-
Notifications
You must be signed in to change notification settings - Fork 0
/
starship.toml
56 lines (49 loc) · 1.17 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
format = """
[░▒▓](light_blue)\
$directory\
[](fg:light_blue bg:slate_blue )\
$git_state\
$git_branch\
$git_status\
[](fg:slate_blue bg:dark_blue )\
$python\
$conda\
[](fg:dark_blue)\
\n$character"""
palette = "current"
[directory]
style = "fg:navy bg:light_blue"
format = "[ $path ]($style)"
truncation_symbol = ".../"
[git_branch]
symbol = ""
style = "fg:light_blue bg:slate_blue"
format = '[ $symbol $branch ]($style)'
[git_status]
style = "fg:light_blue bg:slate_blue"
format = '[(($conflicted )($stashed )($deleted )($renamed )($modified )($staged )($untracked )$ahead_behind )]($style)'
ahead = '⇡$count'
diverged = '⇕⇡$ahead_count ⇣$behind_count'
behind = '⇣$count'
untracked = '?$count'
modified = '!$count'
stashed = '*$count'
staged = '+$count'
conflicted = "=$count"
deleted = "✘$count"
renamed = "»$count"
[python]
symbol = "\ue73c "
style = "fg:light_blue bg:dark_blue"
version_format = 'v$major.$minor'
format = '[ $symbol( $virtualenv )\($version\) ]($style)'
[conda]
symbol = "🐍 "
[palettes.current]
black = "#000000"
white_blue = "#e3e5e5"
light_blue = "#91b6ff"
slate_blue = "#394260"
dark_blue = "#212736"
navy = "#1d2230"
grey = "#a0a9cb"