-
Notifications
You must be signed in to change notification settings - Fork 0
/
starship.toml
62 lines (53 loc) · 1.43 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
format = """\
$character\
[](bg:babyblue fg:prevbg)\
$username\
[](bg:mediumgrey fg:prevbg)\
$directory\
[ ](fg:prevbg)\
"""
right_format = """\
([](fg:burgundy bg:prevbg)$status)\
([](fg:darkgrey bg:prevbg)$git_branch)\
"""
# Disable the blank line at the start of the prompt
add_newline = false
# Set custom palette
palette = "solarized"
[character]
format='$symbol'
success_symbol = "[ INSERT ](bold fg:darkgreen bg:brightgreen)"
error_symbol = "[ INSERT ](bold fg:darkgreen bg:brightgreen)"
vimcmd_symbol = "[ COMMND ](bold fg:darkgreen bg:white)"
# You can also replace your username with a neat symbol like or disable this
# and use the os module below
[username]
show_always = true
format = '[ $user ](bold fg:white bg:prevbg)'
disabled = false
[directory]
# TODO: styled path separator
style = "fg:white bg:mediumgrey"
format = "[ $path ]($style)"
truncation_length = 3
truncation_symbol = "…/"
[status]
# TODO: different colours for success, also signal name is not shown in pipestatus
disabled = false
style = "bg:burgundy fg:white"
format = "[ $status ]($style)"
pipestatus = true
pipestatus_separator = "[](fg:dimwhite bg:burgundy)"
pipestatus_format = "[$pipestatus]($style)"
[git_branch]
format = "[ $symbol$branch ]($style)"
style = "fg:dimwhite bg:darkgrey"
[palettes.solarized]
darkgreen = "22"
brightgreen = "148"
white = "15"
dimwhite = "250"
babyblue = "4"
mediumgrey = "240"
darkgrey = "236"
burgundy = "52"