22 lines
465 B
TOML
22 lines
465 B
TOML
# Get editor completions based on the config schema
|
|
"$schema" = 'https://starship.rs/config-schema.json'
|
|
|
|
add_newline = false
|
|
|
|
format = '''
|
|
$hostname$directory$git_branch$git_status$character
|
|
'''
|
|
|
|
[git_branch]
|
|
format = "[$branch(:$remote_branch)]($style) "
|
|
style = "black"
|
|
|
|
[git_status]
|
|
format = "([$all_status$ahead_behind]($style) )"
|
|
deleted = "X"
|
|
style = "bold white"
|
|
|
|
[hostname]
|
|
ssh_only = false
|
|
format = "[$ssh_symbol$hostname]($style) "
|
|
style = "bold purple"
|