-
Notifications
You must be signed in to change notification settings - Fork 0
/
.starship.toml
68 lines (56 loc) · 1.86 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
# Don't print a new line at the start of the prompt
add_newline = false
################################################################################
[aws]
format = "on [$symbol$profile]($style) "
[aws.region_aliases]
eu-central-1 = "ec1"
europe-west-3 = "ew3"
################################################################################
[battery]
full_symbol = "🔋"
charging_symbol = "⚡️"
discharging_symbol = ""
[[battery.display]] # "bold red" style when capacity is between 0% and 10%
threshold = 10
style = "bold red"
[[battery.display]] # "bold yellow" style when capacity is between 10% and 30%
threshold = 30
style = "bold yellow"
# when capacity is over 30%, the battery indicator will not be displayed
################################################################################
[cmd_duration]
# $duration – The command duration (e.g. "15s")
# $style – The default style of the module (e.g. "bold yellow")
format = "took [$duration]($style) "
min_time = 1_000
################################################################################
[git_status]
conflicted = "🏳"
ahead = "⇡"
behind = "⇣"
diverged = "⇡$ahead_count ⇣$behind_count"
untracked = "🤷"
stashed = "📚"
modified = "📝"
staged = '[++\($count\)](green)'
renamed = "👅"
deleted = "🗑"
################################################################################
[git_branch]
symbol = "🌱 "
truncation_length = 20
truncation_symbol = "…"
################################################################################
[kubernetes]
symbol = "⛵ "
disabled = false
################################################################################
[directory]
#truncation_length = 8
#truncation_symbol = "…/"
################################################################################
[docker_context]
symbol = "🐋 "
only_with_files = true
disabled = true