Skip to content

Instantly share code, notes, and snippets.

@saeedvaziry
Created November 8, 2025 12:09
Show Gist options
  • Save saeedvaziry/8d30a29048e926e79702a34ad6a2ddeb to your computer and use it in GitHub Desktop.
Save saeedvaziry/8d30a29048e926e79702a34ad6a2ddeb to your computer and use it in GitHub Desktop.
starship config for aether
"$schema" = 'https://starship.rs/config-schema.json'
add_newline = false
format = """
[](bright-black)\
$os\
$username\
[](bg:blue fg:bright-black)\
$directory\
[](fg:blue bg:green)\
$git_branch\
$git_status\
[](fg:green bg:cyan)\
$c\
$rust\
$golang\
$nodejs\
$php\
$java\
$kotlin\
$haskell\
$python\
[](fg:cyan bg:yellow)\
$docker_context\
[](fg:yellow bg:red)\
$time\
[ ](fg:red)\
$line_break$character"""
# The palette section has been removed to use your terminal's dynamic colors.
[os]
disabled = false
# Uses your terminal's 'bright-black' color for the background
style = "bg:bright-black fg:white"
[os.symbols]
Windows = "󰍲"
Ubuntu = "󰕈"
SUSE = ""
Raspbian = "󰐿"
Mint = "󰣭"
Macos = ""
Manjaro = ""
Linux = "󰌽"
Gentoo = "󰣨"
Fedora = "󰣛"
Alpine = ""
Amazon = ""
Android = ""
Arch = "󰣇"
Artix = "󰣇"
CentOS = ""
Debian = "󰣚"
Redhat = "󱄛"
RedHatEnterprise = "󱄛"
[username]
show_always = true
# Uses your terminal's 'bright-black' color for the background
style_user = "bg:bright-black fg:white"
style_root = "bg:bright-black fg:white"
format = '[ $user ]($style)'
[directory]
style = "fg:white bg:blue"
format = "[ $path ]($style)"
truncation_length = 3
truncation_symbol = "…/"
[directory.substitutions]
"Documents" = "󰈙 "
"Downloads" = ""
"Music" = "󰝚 "
"Pictures" = ""
"Developer" = "󰲋 "
[git_branch]
symbol = ""
style = "bg:green"
format = '[[ $symbol $branch ](fg:black bg:green)]($style)'
[git_status]
style = "bg:green"
format = '[[($all_status$ahead_behind )](fg:black bg:green)]($style)'
[nodejs]
symbol = ""
style = "bg:cyan"
format = '[[ $symbol( $version) ](fg:black bg:cyan)]($style)'
[c]
symbol = ""
style = "bg:cyan"
format = '[[ $symbol( $version) ](fg:black bg:cyan)]($style)'
[rust]
symbol = ""
style = "bg:cyan"
format = '[[ $symbol( $version) ](fg:black bg:cyan)]($style)'
[golang]
symbol = ""
style = "bg:cyan"
format = '[[ $symbol( $version) ](fg:black bg:cyan)]($style)'
[php]
symbol = ""
style = "bg:cyan"
format = '[[ $symbol( $version) ](fg:black bg:cyan)]($style)'
[java]
symbol = ""
style = "bg:cyan"
format = '[[ $symbol( $version) ](fg:black bg:cyan)]($style)'
[kotlin]
symbol = ""
style = "bg:cyan"
format = '[[ $symbol( $version) ](fg:black bg:cyan)]($style)'
[haskell]
symbol = ""
style = "bg:cyan"
format = '[[ $symbol( $version) ](fg:black bg:cyan)]($style)'
[python]
symbol = ""
style = "bg:cyan"
format = '[[ $symbol( $version) ](fg:black bg:cyan)]($style)'
[docker_context]
symbol = ""
style = "bg:yellow"
format = '[[ $symbol( $context) ](fg:black bg:yellow)]($style)'
[time]
disabled = false
time_format = "%R"
style = "bg:red"
format = '[[  $time ](fg:white bg:red)]($style)'
[line_break]
disabled = false
[character]
disabled = false
success_symbol = '[](bold fg:green)'
error_symbol = '[](bold fg:red)'
vimcmd_symbol = '[](bold fg:cyan)'
vimcmd_replace_one_symbol = '[](bold fg:red)'
vimcmd_replace_symbol = '[](bold fg:red)'
vimcmd_visual_symbol = '[](bold fg:blue)'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment