Skip to content

Instantly share code, notes, and snippets.

@EricZimmerman
Last active March 13, 2026 00:05
Show Gist options
  • Select an option

  • Save EricZimmerman/2fefb5565e3e6fded749475467db0514 to your computer and use it in GitHub Desktop.

Select an option

Save EricZimmerman/2fefb5565e3e6fded749475467db0514 to your computer and use it in GitHub Desktop.
starship.toml
"$schema" = 'https://starship.rs/config-schema.json'
format = """
$directory\
$git_branch\
$git_status\
$hostname\
$fill\
$python\
$lua\
$nodejs\
$golang\
$haskell\
$rust\
$ruby\
$package\
$aws\
$docker_context\
$jobs\
$cmd_duration\
$line_break\
$character"""
add_newline = true
palette = 'nord'
[sudo]
style = 'bold green'
symbol = 'πŸ‘©β€πŸ’» '
disabled = false
[directory]
style = 'bold fg:dark_blue'
format = '[$path ]($style)'
truncation_length = 3
truncation_symbol = '…/'
truncate_to_repo = false
[directory.substitutions]
'Documents' = 'σ°ˆ™'
'Downloads' = 'ο€™ '
'Music' = ' '
'Pictures' = 'ο€Ύ '
[git_branch]
style = 'fg:green'
symbol = ' '
format = '[on](white) [$symbol$branch ]($style)'
[git_status]
style = 'fg:green'
format = '([$all_status$ahead_behind]($style) )'
[fill]
symbol = ' '
[python]
style = 'teal'
symbol = ' '
format = '[${symbol}${pyenv_prefix}(${version} )(\($virtualenv\) )]($style)'
pyenv_version_name = true
pyenv_prefix = ''
[lua]
symbol = ' '
[nodejs]
style = 'blue'
symbol = ' '
[golang]
style = 'blue'
symbol = ' '
[haskell]
style = 'blue'
symbol = ' '
[rust]
style = 'orange'
symbol = ' '
[ruby]
style = 'blue'
symbol = 'ξž‘ '
[package]
symbol = '󰏗 '
[aws]
symbol = 'ο‰° '
style = 'yellow'
format = '[$symbol($profile )(\[$duration\] )]($style)'
[docker_context]
symbol = ' '
style = 'fg:#06969A'
format = '[$symbol]($style) $path'
detect_files = ['docker-compose.yml', 'docker-compose.yaml', 'Dockerfile']
detect_extensions = ['Dockerfile']
[jobs]
symbol = ' '
style = 'red'
number_threshold = 1
format = '[$symbol]($style)'
[cmd_duration]
min_time = 500
style = 'fg:gray'
format = '[$duration]($style)'
[palettes.nord]
dark_blue = '#5E81AC'
blue = '#81A1C1'
teal = '#88C0D0'
red = '#BF616A'
orange = '#D08770'
green = '#A3BE8C'
yellow = '#EBCB8B'
purple = '#B48EAD'
gray = '#434C5E'
black = '#2E3440'
white='#D8DEE9'
[palettes.onedark]
dark_blue='#61afef'
blue='#56b6c2'
red='#e06c75'
green='#98c379'
purple='#c678dd'
cyan='#56b6c2'
orange='#be5046'
yellow='#e5c07b'
gray='#828997'
white ='#abb2bf'
black='#2c323c'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment