22 lines
497 B
TOML
22 lines
497 B
TOML
# Get editor completions based on the config schema
|
||
"$schema" = 'https://starship.rs/config-schema.json'
|
||
|
||
format = "$directory$git_branch$git_status$character"
|
||
right_format = "$cmd_duration$status"
|
||
add_newline = true
|
||
|
||
[character]
|
||
success_symbol = "[❯](bold purple)"
|
||
|
||
[cmd_duration]
|
||
format = " [$duration]($style)"
|
||
|
||
[git_branch]
|
||
format = "[$branch(:$remote_branch)]($style) "
|
||
|
||
[git_status]
|
||
format = "([$all_status$ahead_behind]($style) )"
|
||
|
||
[status]
|
||
format = " [$status]($style)"
|
||
disabled = false
|