-
Notifications
You must be signed in to change notification settings - Fork 0
/
starship.toml
150 lines (124 loc) · 2.97 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
143
144
145
146
147
148
149
150
palette = "gruvbox_dark"
add_newline = false
[line_break]
disabled = true
[username]
style_root = "red bold"
format = "[$user](bold green) "
disabled = false
show_always = true
[hostname]
ssh_only = false
format = 'on [$hostname](bold yellow) '
trim_at = "."
disabled = false
[character]
success_symbol = " [>](bold green)"
error_symbol = " [x](bold red)"
vimcmd_symbol = " [<](bold green)"
[cmd_duration]
min_time = 10_000 # Show command duration over 10,000 milliseconds (=10 sec)
format = " took [$duration]($style)"
[directory]
truncation_length = 5
truncation_symbol = " "
format = "[$path]($style)[$read_only]($read_only_style)"
read_only = "🔒"
style = "bold cyan"
[git_branch]
format = " [$symbol$branch]($style) "
symbol = "🍣 "
style = "bold green"
always_show_remote = false
only_attached = false
disabled = false
[git_state]
format = '[\($state( $progress_current of $progress_total)\)]($style) '
style = "bold yellow"
[git_commit]
commit_hash_length = 4
style = "bold white"
tag_symbol = " 🏷 "
[git_metrics]
added_style = "bold green"
deleted_style = "bold red"
only_nonzero_diffs = true
format = '([+$added]($added_style) )([-$deleted]($deleted_style) )'
disabled = true
[git_status]
conflicted = "⚔️ "
ahead = "⇡"
behind = "[⇣${count}](bold dimmed blue)"
diverged = "⇕${ahead_count}⇣${behind_count}"
untracked = "[?${count}](bold blue)"
modified ="[!${count}](bold yellow)"
staged = "[+${count}](bold yellow)"
renamed = "» ×${count}"
deleted = "[✘ ×${count}](bold red)"
format = "$all_status$ahead_behind"
[memory_usage]
format = "$symbol[${ram}( | ${swap})]($style) "
threshold = 70
style = "bold dimmed white"
disabled = false
[package]
disabled = true
[python]
format = "[$symbol$version](bold ) "
symbol = " "
[lua]
format = "[$symbol($version )]($style)"
detect_extensions = ["lua"]
symbol = " "
style = "bold red"
[java]
format = "[$symbol($version )]($style)"
detect_extensions = ["java", "class", "gradle", "jar", "cljc"]
symbol =" "
style = "white bold"
[nodejs]
format = "[$symbol($version )]($style)"
detect_extensions = ["js", "mjs", "cjs", "ts", "mts", "cts"]
symbol =" "
style = "bold green"
[rust]
format = "[$symbol$version]($style) "
style = "bold green"
[palettes.catppuccin_mocha]
rosewater = "#f5e0dc"
flamingo = "#f2cdcd"
pink = "#f5c2e7"
mauve = "#cba6f7"
red = "#f38ba8"
maroon = "#eba0ac"
peach = "#fab387"
yellow = "#f9e2af"
green = "#a6e3a1"
teal = "#94e2d5"
sky = "#89dceb"
sapphire = "#74c7ec"
blue = "#89b4fa"
lavender = "#b4befe"
text = "#cdd6f4"
subtext1 = "#bac2de"
subtext0 = "#a6adc8"
overlay2 = "#9399b2"
overlay1 = "#7f849c"
overlay0 = "#6c7086"
surface2 = "#585b70"
surface1 = "#45475a"
surface0 = "#313244"
base = "#1e1e2e"
mantle = "#181825"
crust = "#11111b"
[palettes.gruvbox_dark]
color_fg0 = '#fbf1c7'
color_bg1 = '#3c3836'
color_bg3 = '#665c54'
color_blue = '#458588'
color_aqua = '#689d6a'
color_green = '#98971a'
color_orange = '#d65d0e'
color_purple = '#b16286'
color_red = '#cc241d'
color_yellow = '#d79921'