-
Notifications
You must be signed in to change notification settings - Fork 0
/
starship.toml
68 lines (55 loc) · 1.3 KB
/
starship.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
format = """\n
[](#DA627D)\
$directory\
[](fg:#DA627D bg:#FCA17D)\
$git_branch\
$git_status\
[](fg:#FCA17D bg:#33658A)\
$time\
[ ](fg:#33658A)\n
$golang\
$java\
$nodejs\
$docker_context\
$python\
[ ](fg:yellow)\
"""
[directory]
style = "bg:#DA627D"
format = "[ $path ]($style)"
truncation_length = 2
truncation_symbol = "…/"
[docker_context]
symbol = " "
style = "bg:#06969A"
format = """[](#86BBD8)[ $symbol $context ]($style))[ ](fg:#86BBD8)\n\n"""
[git_branch]
symbol = ""
style = "bg:#FCA17D"
format = '[ $symbol $branch ]($style)'
[git_status]
modified = " "
untracked = " "
style = "bg:#FCA17D"
format = '[$all_status$ahead_behind ]($style)'
[golang]
symbol = " "
style = "bg:#86BBD8"
format = """[](#86BBD8)[ $symbol ($version) ]($style)[ ](fg:#86BBD8)\n\n"""
[java]
symbol = " "
style = "bg:#86BBD8"
format = """[](#86BBD8)[ $symbol ($version) ]($style)[ ](fg:#86BBD8)\n\n"""
[nodejs]
symbol = ""
style = "bg:#86BBD8"
format = """[](#86BBD8)[ $symbol ($version) ]($style)[ ](fg:#86BBD8)\n\n"""
[python]
style = "bg:yellow"
symbol = " "
format = """[](yellow)[ $symbol ($version) ]($style)[ ](fg:yellow)\n\n"""
[time]
disabled = false
time_format = "%R" # Hour:Minute Format
style = "bg:#33658A"
format = '[ $time ]($style)'