-
Notifications
You must be signed in to change notification settings - Fork 0
/
starship.toml
91 lines (75 loc) · 1.88 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
# Get editor completions based on the config schema
'$schema' = 'https://starship.rs/config-schema.json'
# Move the directory to the second line
format = "$env_var$all$directory$shell$status$character"
add_newline = false
palette = 'gruvbox-material'
[palettes.gruvbox-material]
color_fg0 = '#ddc7a1'
color_bg1 = '#252423'
color_bg2 = '#32302f'
color_blue = '#7daea3'
color_aqua = '#89b482'
color_green = '#a9b665'
color_orange = '#e78a4e'
color_purple = '#d3869b'
color_red = '#ea6962'
color_yellow = '#d8a657'
[env_var.STARSHIP_DISTRO]
format = '[$env_value](black)'
variable = "STARSHIP_DISTRO"
disabled = true
[line_break]
disabled = true
[hostname]
ssh_only = true
format = "[$hostname](bold fg:color_red) "
trim_at = "."
disabled = false
[character]
format = '$symbol '
success_symbol = '[➜](bold fg:color_green)'
error_symbol = '[](bold fg:color_red)'
vimcmd_symbol = "[](bold fg:color_purple)"
disabled = false
[status]
format = "[$status$symbol]($style) "
pipestatus_format = "\\[$pipestatus\\] => [$symbol$common_meaning$signal_name$maybe_int]($style) "
symbol = ''
pipestatus_separator = '|'
map_symbol = false
pipestatus = true
disabled = false
[directory]
style = "bold fg:color_blue"
read_only_style = 'bold fg:color_red'
truncation_length = 1
truncation_symbol = ".../"
home_symbol = "~"
read_only = " "
format = "[$path]($style)[$read_only]($read_only_style) "
[git_branch]
format = "[$symbol$branch]($style) "
style = "bold fg:color_aqua"
[python]
symbol = " "
pyenv_version_name = true
[lua]
symbol = " "
format = '[via $symbol\(($version)\)]($style) '
style = 'bold fg:color_purple'
[shell]
disabled = true
zsh_indicator = 'ZSH'
style = "#5F5F5F"
[nodejs]
disabled = true
[ruby]
symbol = " "
[terraform]
format = "[$symbol$workspace](fg:color_purple)"
symbol = " "
[golang]
symbol = "🐹 "
format = '[via $symbol\(($version)\)]($style) '
style = 'bold fg:color_orange'