Skip to content

Instantly share code, notes, and snippets.

@Xeven777
Created March 9, 2026 19:46
Show Gist options
  • Select an option

  • Save Xeven777/76e32bcfc0ebfeb4c552b4dd731126f4 to your computer and use it in GitHub Desktop.

Select an option

Save Xeven777/76e32bcfc0ebfeb4c552b4dd731126f4 to your computer and use it in GitHub Desktop.
Starfish preset
"$schema" = "https://starship.rs/config-schema.json"
format = """
[](#9A348E)\
$username\
[](bg:#DA627D fg:#9A348E)\
$directory\
$git_branch\
$git_status\
$nodejs\
$bun\
$golang\
$rust\
$java\
[](fg:#86BBD8 bg:#06969A)\
$docker_context\
[](fg:#06969A bg:#33658A)\
$time\
$cmd_duration\
[](fg:#33658A)\
$character
"""
add_newline = false
command_timeout = 2000
# -----------------------------------
# USER
# -----------------------------------
[username]
show_always = true
style_user = "bg:#9A348E"
style_root = "bg:#9A348E"
format = "[ $user ]($style)"
# -----------------------------------
# DIRECTORY
# -----------------------------------
[directory]
style = "bg:#DA627D"
format = "[ $path ]($style)"
truncation_length = 3
truncation_symbol = "…/"
[directory.substitutions]
Documents = "󰈙"
Downloads = ""
Music = ""
Pictures = ""
# -----------------------------------
# GIT
# -----------------------------------
[git_branch]
symbol = ""
style = "bg:#FCA17D"
format = "[ $symbol $branch ]($style)"
truncation_length = 5
truncation_symbol = '.'
ignore_branches = ['master', 'main']
[git_status]
style = "bg:#FCA17D"
format = "[$all_status$ahead_behind ]($style)"
staged = "+"
conflicted = '🏳'
ahead = '🏎💨'
behind = '😰'
diverged = '😵'
up_to_date = '✓'
untracked = '🤷'
stashed = '📦'
modified = '📝'
renamed = '👅'
deleted = '🗑'
# -----------------------------------
# LANGUAGES
# -----------------------------------
[nodejs]
symbol = ""
style = "bg:#86BBD8"
format = "[ $symbol ($version) ]($style)"
[bun]
symbol = ""
style = "bg:#86BBD8"
format = "[ $symbol ($version) ]($style)"
[golang]
symbol = ""
style = "bg:#86BBD8"
format = "[ $symbol ($version) ]($style)"
[rust]
symbol = ""
style = "bg:#86BBD8"
format = "[ $symbol ($version) ]($style)"
disabled = true
[java]
symbol = ""
style = "bg:#86BBD8"
format = "[ $symbol ($version) ]($style)"
disabled = true
# -----------------------------------
# TIME
# -----------------------------------
[time]
disabled = false
time_format = "%R"
style = "bg:#33658A"
format = "[ ♥ $time ]($style)"
# -----------------------------------
# COMMAND DURATION
# -----------------------------------
[cmd_duration]
min_time = 777
format = "[ ⏱ $duration ](bg:#33658A)"
# -----------------------------------
# PROMPT SYMBOL
# -----------------------------------
[character]
success_symbol = "[ ❯ ](bold green)"
error_symbol = "[ ✖ ](bold red)"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment