-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstarbase.toml
More file actions
65 lines (53 loc) Β· 1.43 KB
/
starbase.toml
File metadata and controls
65 lines (53 loc) Β· 1.43 KB
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
# Don't print a new line at the start of the prompt
add_newline = true
# Disable the package module, hiding it from the prompt completely
[package]
disabled = true
[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"
[directory]
truncation_length = 4
[python]
format = "[$symbol$version]($style) "
style = "bold green"
[git_branch]
format = " [$symbol$branch]($style) "
symbol = "π£ "
style = "bold yellow"
[git_commit]
commit_hash_length = 8
style = "bold white"
[git_state]
progress_divider = " of "
[git_status]
conflicted = "βοΈ "
ahead = "ποΈ π¨ Γ${count}"
behind = "π’ Γ${count}"
diverged = "π± ποΈ π¨ Γ${ahead_count} π’ Γ${behind_count}"
untracked = "π€οΈ Γ${count}"
stashed = "π¦ "
modified = "π Γ${count}"
staged = "ποΈ Γ${count}"
renamed = "π Γ${count}"
deleted = "ποΈ Γ${count}"
style = "bright-white"
format = "$all_status$ahead_behind"
[memory_usage]
disabled = false
threshold = -1
symbol = " "
style = "bold dimmed green"
[time]
disabled = false
format = '[ π $time ]($style) '
time_format = "%I:%M:%S %p"
utc_time_offset = "+6"
style = "bold bg:#8a15e2"