Last active
March 13, 2026 00:05
-
-
Save EricZimmerman/2fefb5565e3e6fded749475467db0514 to your computer and use it in GitHub Desktop.
starship.toml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "$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