-
Notifications
You must be signed in to change notification settings - Fork 3
/
starship.toml
137 lines (119 loc) · 2.79 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
'$schema' = 'https://starship.rs/config-schema.json'
format = """
[](fg:nord1)\
$os\
[( $username([@](bg:nord1 fg:nord4)$hostname) )](bg:nord1)\
[](fg:nord1 bg:nord2)\
$directory\
[](fg:nord2 bg:nord8)\
$git_branch\
$git_commit\
[](fg:nord8 bg:nord9)\
$git_state\
$git_status\
[](fg:nord9 bg:nord10)\
$cmd_duration\
$status\
[ ](fg:nord10)\
$line_break$character"""
palette = 'nord'
[palettes.nord]
nord0 = '#2E3440'
nord1 = '#3B4252'
nord2 = '#434C5E'
nord3 = '#4C566A'
nord4 = '#D8DEE9'
nord5 = '#E5E9F0'
nord6 = '#ECEFF4'
nord7 = '#8FBCBB'
nord8 = '#88C0D0'
nord9 = '#81A1C1'
nord10 = '#5E81AC'
nord11 = '#BF616A'
nord12 = '#D08770'
nord13 = '#EBCB8B'
nord14 = '#A3BE8C'
nord15 = '#B48EAD'
[character]
error_symbol = '[❯](bold fg:nord11)'
success_symbol = '[❯](bold fg:nord14)'
vimcmd_replace_one_symbol = '[❮](bold fg:nord15)'
vimcmd_replace_symbol = '[❮](bold fg:nord15)'
vimcmd_symbol = '[❮](bold fg:nord14)'
vimcmd_visual_symbol = '[❮](bold fg:nord13)'
[cmd_duration]
format = '[ $duration ]($style)'
style = 'fg:nord1 bg:nord10'
[directory]
fish_style_pwd_dir_length = 2
format = '[ $path[$read_only]($read_only_style) ]($style)'
home_symbol = ' '
read_only = ' '
read_only_style = 'fg:nord11 bg:nord2'
style = 'fg:nord8 bg:nord2'
truncation_length = 3
truncation_symbol = '…/'
truncate_to_repo = true
[directory.substitutions]
'Desktop' = ' '
'Documents' = ' '
'Downloads' = ' '
'Movies' = ' '
'Music' = ' '
'Pictures' = ' '
'Videos' = ' '
[git_branch]
format = '[ $symbol$branch( $remote_branch) ]($style)'
style = 'fg:nord1 bg:nord8'
symbol = ' '
[git_commit]
format = '[ $hash$tag ]($style)'
style = 'fg:nord1 bg:nord8'
tag_symbol = ' '
tag_disabled = false
[git_state]
format = '[ \($state( $progress_current/$progress_total)\)]($style)'
style = 'fg:nord1 bg:nord9'
[git_status]
format = '[( $all_status$ahead_behind)]($style)'
style = 'fg:nord1 bg:nord9'
ahead = ' $count '
behind = ' $count '
conflicted = ' $count '
deleted = ' $count '
diverged = ' $ahead_count $behind_count '
modified = ' $count '
renamed = ' $count '
staged = ' $count '
stashed = ' $count '
untracked = ' '
up_to_date = ''
[hostname]
format = '[$hostname]($style)'
ssh_symbol = ' '
ssh_only = true
style = 'bg:nord1 fg:nord14'
[line_break]
disabled = false
[os]
disabled = false
format = '[$symbol]($style)'
style = 'bg:nord1 fg:nord4'
[os.symbols]
Android = ' '
Debian = ' '
Linux = ' '
Macos = ' '
Ubuntu = ' '
Unknown = ' '
Windows = ' '
[status]
disabled = false
format = '[ $symbol$status (\(SIG$signal_name\) )]($style)'
symbol = ' '
style = 'fg:nord1 bg:nord10'
[username]
format = '[$user]($style)'
show_always = false
style_user = 'bg:nord1 fg:nord13'
style_root = 'bg:nord1 fg:nord11 bold'