-
Notifications
You must be signed in to change notification settings - Fork 10
/
starship.toml
75 lines (62 loc) · 1.48 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
"$schema" = 'https://starship.rs/config-schema.json'
# Inserts a blank line between shell prompts (default: true)
add_newline = false
format = """
$time\
[](fg:color_1 bg:color_2)\
$directory\
[](fg:color_2 bg:color_3)\
$git_branch\
$git_state\
$git_status\
[](fg:color_3)\
$status\
$cmd_duration\
$fill\
$line_break\
$character"""
palette = 'tomsquest'
[palettes.tomsquest]
color_1 = '#C9C3E6'
color_2 = '#E4D6F9'
color_3 = '#FFC5E4'
color_text = '#444444'
#[character]
#success_symbol = "[❯](color_green)"
#error_symbol = "[❗](color_red)"
[time]
disabled = false # the module is disabled by default
format = '[ $time ]($style)'
style = "bold fg:color_text bg:color_1"
[directory]
format = "[ $path ]($style)"
style = "bold fg:color_text bg:color_2"
truncate_to_repo = false
fish_style_pwd_dir_length = 1
[fill]
symbol = '─'
style = 'white'
[git_branch]
format = '[ $branch ]($style)'
style = "bold fg:color_text bg:color_3"
[git_status]
format = '[$all_status$ahead_behind ]($style)'
style = "bold fg:color_text bg:color_3"
# Do not show stashed
stashed = ""
# Add the count
ahead = '⇡${count}'
behind = '⇣${count}'
diverged = '⇕⇡${ahead_count}⇣${behind_count}'
[git_state]
style = "black"
[status]
disabled = false # the module is disabled by default
format = '[ $status ]($style)'
style = 'bold red'
pipestatus = true
pipestatus_format = ' \[$pipestatus\] => [$status ]($style)'
[cmd_duration]
format = '[ took $duration ]($style)'
style = "bright white"
min_time = 30_000