33 lines
558 B
TOML
33 lines
558 B
TOML
# Starship config - Tomorrow Night palette
|
||
|
||
format = """
|
||
$directory\
|
||
$git_branch\
|
||
$git_status\
|
||
$cmd_duration\
|
||
$line_break\
|
||
$character"""
|
||
|
||
[character]
|
||
success_symbol = "[❯](bold #81a2be)"
|
||
error_symbol = "[❯](bold #cc6666)"
|
||
|
||
[directory]
|
||
style = "bold #81a2be"
|
||
truncation_length = 3
|
||
truncate_to_repo = true
|
||
|
||
[git_branch]
|
||
symbol = " "
|
||
style = "bold #b5bd68"
|
||
format = "[$symbol$branch]($style) "
|
||
|
||
[git_status]
|
||
style = "#cc6666"
|
||
format = '([$all_status$ahead_behind]($style) )'
|
||
|
||
[cmd_duration]
|
||
min_time = 2000
|
||
style = "#f0c674"
|
||
format = "[$duration]($style) "
|