55 lines
823 B
TOML
55 lines
823 B
TOML
# Starship configuration
|
||
|
||
# Disable the blank line at the start of the prompt
|
||
add_newline = false
|
||
|
||
# Custom palette for consistent branding
|
||
palette = "canva"
|
||
|
||
[palettes.canva]
|
||
blue = "#00c4cc"
|
||
purple = "#7d2ae8"
|
||
|
||
# Module configurations
|
||
[character]
|
||
success_symbol = "[❯](bold green)"
|
||
error_symbol = "[❯](bold red)"
|
||
vicmd_symbol = "[❮](bold green)"
|
||
|
||
[directory]
|
||
truncation_length = 3
|
||
truncation_symbol = "…/"
|
||
|
||
[git_branch]
|
||
symbol = " "
|
||
style = "bold purple"
|
||
|
||
[git_status]
|
||
ahead = "⇡${count}"
|
||
behind = "⇣${count}"
|
||
staged = "+${count}"
|
||
modified = "!${count}"
|
||
untracked = "?${count}"
|
||
|
||
[package]
|
||
disabled = true
|
||
|
||
[nix_shell]
|
||
symbol = "❄️ "
|
||
format = "via [$symbol$state]($style) "
|
||
|
||
[java]
|
||
symbol = "☕ "
|
||
|
||
[python]
|
||
symbol = "🐍 "
|
||
|
||
[nodejs]
|
||
symbol = " "
|
||
|
||
[rust]
|
||
symbol = "🦀 "
|
||
|
||
[golang]
|
||
symbol = "🐹 "
|