starship: Update config
[shutils.git] / dotfiles / shell / starship.toml
1 # https://starship.rs/config/
2
3 [directory]
4 truncate_to_repo = false
5 style = "bold blue"
6 truncation_length = 5
7 truncation_symbol = "…"
8
9 [username]
10 style_user = "bold green"
11
12 [git_branch]
13 style = "bold yellow"
14
15 [status]
16 disabled = false
17
18 [[battery.display]]
19 threshold = 10
20 style = "bold red"
21
22 [[battery.display]]
23 threshold = 30
24 style = "bold yellow"
25
26 [time]
27 disabled = false
28 format = "[$time]($style) "
29 style = "fg:246"
30
31 [custom.screen]
32 description = "Displays whether we are in a screen session"
33 command = "echo screen"
34 when = """test -n "$STY" """
35 format = "in [$symbol($output )]($style)"
36 style = "bold yellow"