dotfiles/roles/user/shell/zsh/files/starship.toml
Matej Focko 8f7968a020
fix(user/shell/zsh): update the starship config
Signed-off-by: Matej Focko <me@mfocko.xyz>
2024-05-07 13:45:20 +02:00

65 lines
1.1 KiB
TOML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

add_newline = false
format = """$username\
$hostname\
$git_branch\
$git_commit\
$git_state\
$git_status\
${custom.toolbox}\
$nix_shell\
$jobs\
$time\
$cmd_duration\
$line_break\
$directory\
$character"""
[username]
format = "[$user]($style)@"
show_always = true
style_user = "cyan"
[hostname]
format = "[$hostname]($style) "
ssh_only = false
style = "purple"
[directory]
style = "bright-purple"
[git_branch]
format = "[$branch]($style)"
style = "cyan"
[git_state]
format = '\([$state( $progress_current/$progress_total)]($style)\) '
style = "cyan"
[git_status]
format = "[[(*$conflicted$untracked$modified$staged$renamed$deleted)](218) ($ahead_behind$stashed)]($style)"
style = "cyan"
conflicted = ""
untracked = ""
modified = ""
staged = ""
renamed = ""
deleted = ""
stashed = "≡"
[custom.toolbox]
when = "ls /run/.containerenv"
symbol = " "
command = "~/.local/bin/toolbox_name.sh"
format = "in [$symbol($output )]($style)"
style = "bold purple"
[time]
disabled = true
[cmd_duration]
format = " [$duration]($style) "
style = "italic yellow"
[character]
success_symbol = "[%](green)"
error_symbol = "[%](red)"