-
Notifications
You must be signed in to change notification settings - Fork 1
/
starship.toml
143 lines (121 loc) · 2.96 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
format = """
[](bg:#1e1e2e fg:#cba6f7)\
$os\
$username\
[](bg:#45475a fg:#CBA6F7)\
$directory\
[](fg:#45475a bg:#313244)\
$git_branch\
$git_status\
[](fg:#313244 bg:#1e1e2f)\
$c\
$elixir\
$elm\
$golang\
$haskell\
$java\
$julia\
$nodejs\
$nim\
$rust\
$ruby\
$scala\
[](fg:#1e1e2f bg:#181825)\
$time\
[ ](fg:#181825)\
"""
# Disable the blank line at the start of the prompt
add_newline = false
# You can also replace your username with a neat symbol like or disable this
# and use the os module below
[username]
show_always = true
style_user = "bg:#CBA6F7 fg:#1e1e2e"
style_root = "bg:#9A348E"
format = '[ ]($style)'
disabled = false
# An alternative to the username module which displays a symbol that
# represents the current operating system
[os]
style = "bg:#9A348E"
disabled = true # Disabled by default
[directory]
style = "bg:#45475a fg:#CBA6F7"
format = "[ $path ]($style)"
truncation_length = 12
truncation_symbol = "…/"
# Here is how you can shorten some long paths by text replacement
# similar to mapped_locations in Oh My Posh:
#[directory.substitutions]
#"Documents" = " "
#"Downloads" = " "
#"Music" = " "
#"Pictures" = " "
# Keep in mind that the order matters. For example:
# "Important Documents" = " "
# will not be replaced, because "Documents" was already substituted before.
# So either put "Important Documents" before "Documents" or use the substituted version:
# "Important " = " "
[c]
symbol = " "
style = "bg:#1e1e2f fg:#cba6f7"
format = '[ $symbol ($version) ]($style)'
[docker_context]
symbol = " "
style = "bg:#06969A"
format = '[ $symbol $context ]($style) $path'
[elixir]
symbol = " "
style = "bg:#1e1e2f fg:#cba6f7"
format = '[ $symbol ($version) ]($style)'
[elm]
symbol = " "
style = "bg:#1e1e2f fg:#cba6f7"
format = '[ $symbol ($version) ]($style)'
[git_branch]
symbol = ""
style = "bg:#313244 fg:#cba6f7"
format = '[ $symbol $branch ]($style)'
[git_status]
style = "bg:#313244 fg:#cba6f7"
format = '[$all_status$ahead_behind ]($style)'
[golang]
symbol = " "
style = "bg:#1e1e2f fg:#cba6f7"
format = '[ $symbol ($version) ]($style)'
[haskell]
symbol = " "
style = "bg:#1e1e2f fg:#cba6f7"
format = '[ $symbol ($version) ]($style)'
[java]
symbol = " "
style = "bg:#1e1e2f fg:#cba6f7"
format = '[ $symbol ($version) ]($style)'
[julia]
symbol = " "
style = "bg:#1e1e2f fg:#cba6f7"
format = '[ $symbol ($version) ]($style)'
[nodejs]
symbol = ""
style = "bg:#1e1e2f fg:#cba6f7"
format = '[ $symbol ($version) ]($style)'
[nim]
symbol = " "
style = "bg:#1e1e2f fg:#cba6f7"
format = '[ $symbol ($version) ]($style)'
[rust]
symbol = ""
style = "bg:#1e1e2f fg:#cba6f7"
format = '[ $symbol ($version) ]($style)'
[ruby]
symbol = ""
format = '[ $symbol ($version) ]($style)'
[scala]
symbol = " "
style = "bg:#1e1e2f fg:#cba6f7"
format = '[ $symbol ($version) ]($style)'
[time]
disabled = true
time_format = "%R" # Hour:Minute Format
style = "bg:#33658A"
format = '[ $time ]($style)'