-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstarship.toml
90 lines (73 loc) · 1.78 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
# Do not inserts a blank line between shell prompts
add_newline = false
# Change the default prompt format
format = """\
$os\
$all$character"""
# Change the default prompt characters
[character]
success_symbol = "[=>](red)"
error_symbol = "[=>](red)"
# show current distro
[os]
format ='[$symbol](cyan)'
disabled = false
[os.symbols]
Windows = " "
Arch = " "
Ubuntu = " "
Macos = " "
# Shows the username
[username]
style_user = "green bold"
style_root = "red bold"
format = "\\[[$user]($style)\\] "
disabled = false
show_always = true
[directory]
truncation_length = 6
truncation_symbol = '…/'
home_symbol = " "
read_only_style = "red"
read_only = " "
format = "\\[[$path]($style)\\][$read_only]($read_only_style) "
[git_branch]
symbol = " "
format = "on [$symbol$branch]($style) "
truncation_length = 4
truncation_symbol = "…/"
style = "bold green"
[git_status]
format = '[\($all_status$ahead_behind\)]($style) '
style = "bold green"
conflicted = "🏳"
up_to_date = " "
untracked = " "
ahead = "⇡${count}"
diverged = "⇕⇡${ahead_count}⇣${behind_count}"
behind = "⇣${count}"
stashed = " "
modified = " "
staged = '[++\($count\)](green)'
renamed = " "
deleted = " "
[terraform]
format = "via [ terraform $version]($style) 壟 [$workspace]($style) "
[docker_context]
format = "via [ $context](bold blue) "
[helm]
format = "via [ $version](bold purple) "
[python]
symbol = " "
python_binary = ['./venv/bin/python', 'python', 'python3']
[conda]
symbol = " "
style = "green"
[nodejs]
format = "via [ $version](bold green) "
[kubernetes]
format = 'on [ $context\($namespace\)](bold purple) '
disabled = false
[kubernetes.context_aliases]
"clcreative-k8s-staging" = "cl-k8s-staging"
"clcreative-k8s-production" = "cl-k8s-prod"