-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstarship.toml
More file actions
36 lines (28 loc) · 842 Bytes
/
starship.toml
File metadata and controls
36 lines (28 loc) · 842 Bytes
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
"$schema" = 'https://starship.rs/config-schema.json'
# setup commands
command_timeout = 2000
# dispaly
format = """$git_branch$git_status$git_metrics$git_state [❯](dimmed white) """
right_format = """$cmd_duration"""
# configs
## ____ LEFT
[git_branch]
format = " [on](bright-black) [$branch]($style)"
style = "bright-blue"
[git_status]
format = '([\[$all_status$ahead_behind\]]($style))'
style = "dimmed white"
[git_metrics]
disabled = false
format = '([ +$added]($added_style))([ -$deleted]($deleted_style))'
added_style = "bold dimmed green"
deleted_style = "bold dimmed red"
[git_state]
format = '\([$state( $progress_current/$progress_total)]($style)\)'
style = "bold bright-blue"
## ____ RIGHT
[cmd_duration]
min_time = 0
show_milliseconds = true
format = '[in](dimmed white) [$duration]($style)'
style = 'bold dimmed yellow'