-
Notifications
You must be signed in to change notification settings - Fork 0
/
starship.toml
47 lines (40 loc) · 1.27 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
# Get editor completions based on the config schema
"$schema" = 'https://starship.rs/config-schema.json'
# Inserts a blank line between shell prompts
add_newline = true
# Replace the "❯" symbol in the prompt with "➜"
[character] # The name of the module we are configuring is "character"
success_symbol = "[❯](bold green)" # The "success_symbol" segment is being set to "➜" with the color "bold green"
error_symbol = "[✖](bold red)"
vimcmd_symbol = "[ ](bold white)"
vimcmd_replace_one_symbol= "[ ](bold white)"
vimcmd_replace_symbol= "[ ](bold white)"
vimcmd_visual_symbol= "[ ](bold white)"
# Disable the package module, hiding it from the prompt completely
[package]
disabled = true
[username]
style_user = "blue bold"
style_root = "red bold"
format = "[$user]($style) "
disabled = false
show_always = true
[shell]
fish_indicator = "Ⓕ"
powershell_indicator = "_"
bash_indicator = "Ⓑ"
zsh_indicator = "Ⓩ"
unknown_indicator = "mystery shell"
style = "cyan bold"
disabled = false
[git_status]
conflicted = "🏳"
untracked = "?${count}"
stashed = "📦"
modified = "!${count}"
staged = '[++\($count\)](green)'
renamed = "👅"
deleted = "x${count} "
ahead = "⇡${count}"
diverged = "⇕⇡${ahead_count}⇣${behind_count}"
behind = "⇣${count}"