Files
fjord-starship/themes/starship.toml
2026-03-21 20:36:32 +00:00

161 lines
3.2 KiB
TOML

"$schema" = 'https://starship.rs/config-schema.json'
format = """
[](color_green)\
$os\
$username\
[](fg:color_green bg:color_cyan)\
$directory\
[](fg:color_cyan bg:color_b_blue)\
$git_branch\
$git_status\
[](fg:color_b_blue bg:color_blue)\
$c\
$cpp\
$rust\
$golang\
$nodejs\
$php\
$java\
$python\
[](fg:color_blue bg:color_steel)\
$docker_context\
$conda\
[](fg:color_steel bg:color_overlay)\
$time\
[](fg:color_overlay)\
$line_break$character"""
palette = 'colors'
[palettes.colors]
# Accents
color_green = "#9DD99A"
color_cyan = "#B8E7E9"
color_b_blue = "#7BB8FF"
color_blue = "#5DA6EA"
color_steel = "#4C89C9"
# Neutrals
color_base = "#1B2532"
color_overlay = "#2D3D52"
color_surface0 = "#1F2A39"
color_text = "#E8F0F3"
# Alerts
color_red = "#F37C7C"
color_purple = "#B9A0F8"
color_yellow = "#FFD285"
[os]
disabled = false
style = "bg:color_green fg:color_surface0"
[os.symbols]
Windows = "󰍲"
Ubuntu = "󰕈"
Kali = " "
SUSE = ""
Raspbian = "󰐿"
Mint = "󰣭"
Macos = "󰀵"
Manjaro = ""
Linux = "󰌽"
Gentoo = "󰣨"
Fedora = "󰣛"
Alpine = ""
Amazon = ""
Android = ""
Arch = "󰣇"
Artix = "󰣇"
EndeavourOS = ""
CentOS = ""
Debian = "󰣚"
Redhat = "󱄛"
RedHatEnterprise = "󱄛"
[username]
show_always = true
style_user = "bg:color_green fg:color_surface0"
style_root = "bg:color_green fg:color_surface0"
format = '[ $user ]($style)'
[directory]
style = "fg:color_surface0 bg:color_cyan"
format = "[ $path ]($style)"
truncation_length = 3
truncation_symbol = "…/"
[directory.substitutions]
"Documents" = "󰈙 "
"Downloads" = " "
"Music" = "󰝚 "
"Pictures" = " "
"Developer" = "󰲋 "
[git_branch]
symbol = ""
style = "bg:color_b_blue"
format = '[[ $symbol $branch ](fg:color_surface0 bg:color_b_blue)]($style)'
[git_status]
style = "bg:color_b_blue"
format = '[[($all_status$ahead_behind )](fg:color_surface0 bg:color_b_blue)]($style)'
[c]
symbol = " "
style = "bg:color_blue"
format = '[[ $symbol( $version) ](fg:color_surface0 bg:color_blue)]($style)'
[rust]
symbol = ""
style = "bg:color_blue"
format = '[[ $symbol( $version) ](fg:color_surface0 bg:color_blue)]($style)'
[golang]
symbol = ""
style = "bg:color_blue"
format = '[[ $symbol( $version) ](fg:color_surface0 bg:color_blue)]($style)'
[nodejs]
symbol = ""
style = "bg:color_blue"
format = '[[ $symbol( $version) ](fg:color_surface0 bg:color_blue)]($style)'
[php]
symbol = ""
style = "bg:color_blue"
format = '[[ $symbol( $version) ](fg:color_surface0 bg:color_blue)]($style)'
[java]
symbol = " "
style = "bg:color_blue"
format = '[[ $symbol( $version) ](fg:color_surface0 bg:color_blue)]($style)'
[python]
symbol = ""
style = "bg:color_blue"
format = '[[ $symbol( $version) ](fg:color_surface0 bg:color_blue)]($style)'
[docker_context]
symbol = ""
style = "bg:color_steel"
format = '[[ $symbol( $context) ](fg:color_text bg:color_steel)]($style)'
[conda]
style = "bg:color_steel"
format = '[[ $symbol( $environment) ](fg:color_text bg:color_steel)]($style)'
[time]
disabled = false
time_format = "%R"
style = "bg:color_overlay"
format = '[[  $time ](fg:color_text bg:color_overlay)]($style)'
[line_break]
disabled = false
[character]
disabled = false
success_symbol = '[](bold fg:color_green)'
error_symbol = '[](bold fg:color_red)'