-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathhydro.toml
More file actions
62 lines (49 loc) · 1.25 KB
/
Copy pathhydro.toml
File metadata and controls
62 lines (49 loc) · 1.25 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
#
# hydro - mimic Fish's hydro prompt
#
add_newline = false
# A minimal left prompt
format = """$all$directory$git_branch${custom.git_status_dirty}$git_status$cmd_duration$status$character"""
# no right prompt
right_format = ""
# Timeout for commands executed by starship (in milliseconds)
command_timeout=2000
[character]
success_symbol = "[❱](purple)"
error_symbol = "[❱](red)"
vicmd_symbol = "[❰](cyan)"
[python]
format = '[(\($virtualenv\) )]($style)'
style = 'white'
[directory]
style = "blue"
truncation_length = 1
truncation_symbol = ""
fish_style_pwd_dir_length = 1
# right prompt uses left space padding
[git_branch]
format = '[$branch]($style)'
style = 'bold green'
[git_status]
format = "[($ahead_behind$stashed)]($style) "
style = "cyan"
stashed = "≡"
ahead = "⇡${count}"
behind = "⇣${count}"
diverged = "⇕⇡${ahead_count}⇣${behind_count}"
[custom.git_status_dirty]
when = 'test -n "$(git status --porcelain 2>/dev/null)"'
symbol = "•"
style = "white"
format="[$symbol]($style)"
shell = ["zsh", "--no-rcs", "--no-globalrcs"]
[cmd_duration]
format = '[$duration]($style) '
[line_break]
disabled = true
[status]
disabled = false
pipestatus = true
format = '[$symbol$int]($style)'
symbol = '✘'
pipestatus_format = '\[$pipestatus\]($style)'