-
Notifications
You must be signed in to change notification settings - Fork 1
/
starship.toml
78 lines (62 loc) · 1.4 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
# Get editor completions based on the config schema
"$schema" = 'https://starship.rs/config-schema.json'
format = """
[◖](fg:nord3 bg:none)\
[$directory](fg:nord4 bg:nord3)\
[](fg:nord3 bg:nord1)\
[ $git_branch$git_status](fg:nord4 bg:nord1)\
[](fg:nord1 bg:nord3)\
[ $aws$kubernetes$golang$rust](fg:nord4 bg:nord3)\
[](fg:nord3 bg:nord1)\
$fill\
[$battery](fg:nord11 bg:nord1)\
[$time](fg:nord4 bg:nord1)\
[◗ ](fg:nord1 bg:none)\
$all$character """
# Inserts a blank line between shell prompts
add_newline = false
palette = 'nord'
[directory]
format="$path$read_only"
truncation_length = 8
truncation_symbol = '…/'
[battery]
format="$symbol$percentage "
[[battery.display]]
threshold = 10
style = 'bold red'
[git_branch]
format="$symbol$branch(:$remote_branch)"
[git_status]
format=' $all_status$ahead_behind'
[aws]
format=' $symbol($profile )(\($region\) )(\[$duration\] )'
symbol=" "
[golang]
format=' $symbol($version )'
symbol=" "
[rust]
format=' $symbol($version )'
symbol=" "
[kubernetes]
format=' $symbol$context( \($namespace\))'
symbol=" "
disabled=false
[time]
format="$time"
disabled=false
[character]
success_symbol="[ ](bold nord14)"
error_symbol="[ ](bold nord11)"
[fill]
symbol="█"
style="bold nord1"
[palettes.nord]
nord0 = '#2E3440'
nord1 = '#3B4252'
nord2 = '#434C5E'
nord3 = '#4C566A'
nord4 = '#D8DEE9'
nord11 = '#BF616A'
nord13 = '#EBCB8B'
nord14 = '#A2BE8A'