summary refs log tree commit diff
path: root/.config/starship.toml
blob: 2b323181a6a835d5e25001942b829d89808d965b (plain) (blame)
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
format = """
\
$username\
$hostname\
$directory\
\
$git_branch\
$git_commit\
$git_state\
\
$jobs\
$shlvl\
${custom.toolbox}\
\
$character\
"""

add_newline = false
command_timeout = 100

[username]
format = "[$user@]($style)"
style_user = "dimmed"

[hostname]
format = "[$hostname]($style) "
style = "dimmed"

[directory]
truncation_length = 0
truncate_to_repo = false
style = "bright-yellow"

[git_branch]
format = "[$symbol$branch]($style) "
disabled = false

[jobs]
symbol = "∆"

[shlvl]
symbol = "☰"
disabled = false

[custom.toolbox]
symbol = "⬢ "
style = "bright-blue"
format = "[$symbol]($style)"
when = """ test -f /run/.containerenv && test -f /run/.toolboxenv """

[character]
format = "$symbol "
success_symbol = "[❯](bold white)"
error_symbol = "[❯](bold red)"