.dotfiles/.config/starship.toml

107 lines
2 KiB
TOML
Raw Normal View History

2022-03-28 11:28:38 +00:00
format = """
2022-03-28 14:44:28 +00:00
$time\
[](bg:purple fg:blue)\
$sudo$username$hostname$docker_context\
[](bg:green fg:purple)\
$directory\
[](bg:red fg:green)\
$git_branch$git_commit$git_state$git_status\
[](bg:#454158 fg:red)\
$fill\
2022-03-28 15:12:49 +00:00
[](bg:yellow fg:#454158)\
2022-03-28 14:44:28 +00:00
$status$cmd_duration\
2022-03-28 15:12:49 +00:00
[](bg:cyan fg:yellow)\
2022-03-28 14:44:28 +00:00
$jobs\
[](cyan)
$shell$character
2022-03-28 11:28:38 +00:00
"""
2022-03-28 15:12:49 +00:00
continuation_prompt = "[ ](bg:blue)[](blue) "
2022-03-28 11:28:38 +00:00
[character]
2022-03-28 14:44:28 +00:00
success_symbol = "[ ](fg:blue bg:green)[](green)"
error_symbol = "[ ](fg:blue bg:red)[](red)"
vicmd_symbol = "[ ](fg:blue bg:cyan)[](cyan)"
2022-03-28 11:28:38 +00:00
[cmd_duration]
min_time = 0
show_milliseconds = true
2022-03-28 14:44:28 +00:00
style = "bg:yellow fg:black"
format = "[$duration祥]($style)"
2022-03-28 11:28:38 +00:00
[directory]
read_only = ""
truncation_length = 8
truncation_symbol = "…/"
2022-03-28 14:44:28 +00:00
style = "bg:green fg:black"
format = "[$read_only$path]($style)"
2022-03-28 11:28:38 +00:00
[docker_context]
2022-03-28 14:44:28 +00:00
style = "bg:purple"
symbol = ""
format = "[ $symbol$context]($style)"
2022-03-28 11:28:38 +00:00
[fill]
2022-03-28 14:44:28 +00:00
style = "bg:#454158"
2022-03-28 11:28:38 +00:00
symbol = " "
2022-03-28 14:44:28 +00:00
[git_branch]
symbol = ""
style = "bg:red fg:black"
format = '[ $symbol $branch ]($style)'
2022-03-28 11:28:38 +00:00
[git_commit]
2022-03-28 14:44:28 +00:00
style = "bg:red fg:black"
2022-03-28 11:28:38 +00:00
tag_disabled = false
tag_symbol = " "
2022-03-28 14:44:28 +00:00
format = '[\($hash$tag\) ]($style)'
2022-03-28 11:28:38 +00:00
[git_status]
2022-03-28 14:44:28 +00:00
style = "bg:red fg:black"
format = '[\[$all_status$ahead_behind\]]($style)'
2022-03-28 11:28:38 +00:00
[hostname]
ssh_only = false
2022-03-28 14:44:28 +00:00
style = "bg:purple"
format = "[@$hostname]($style)"
2022-03-28 11:28:38 +00:00
trim_at = ""
[jobs]
number_threshold = 1
2022-03-28 14:44:28 +00:00
style = "bg:cyan fg:black"
2022-03-28 11:28:38 +00:00
symbol = ""
2022-03-28 14:44:28 +00:00
format = "[$symbol$number]($style)"
2022-03-28 11:28:38 +00:00
[shell]
bash_indicator = '\$'
fish_indicator = ""
zsh_indicator = '%%'
powershell_indicator = ""
unknown_indicator = ""
2022-03-28 14:44:28 +00:00
style = "bg:blue"
2022-03-28 11:28:38 +00:00
format = '[$indicator]($style)'
disabled = false
[sudo]
2022-03-28 14:44:28 +00:00
style = "bg:purple"
symbol = ""
2022-03-28 11:28:38 +00:00
format = "[$symbol]($style)"
disabled = false
[status]
disabled = false
2022-03-28 14:44:28 +00:00
style = "bg:yellow fg:black"
format = "[$status ]($style)"
2022-03-28 11:28:38 +00:00
[time]
disabled = false
2022-03-28 14:44:28 +00:00
style = "bg:blue"
2022-03-28 11:28:38 +00:00
format = "[$time]($style)"
[username]
show_always = true
2022-03-28 14:44:28 +00:00
style_user = "bg:purple"
style_root = "bg:purple underline"
2022-03-28 15:12:49 +00:00
format = "[$user]($style)"