Skip to content

Instantly share code, notes, and snippets.

@AntreasAntoniou
Last active June 2, 2024 17:23
Show Gist options
  • Save AntreasAntoniou/3bfe47d51e915e93517ce335c2b1f98b to your computer and use it in GitHub Desktop.
Save AntreasAntoniou/3bfe47d51e915e93517ce335c2b1f98b to your computer and use it in GitHub Desktop.
Awesome Starship Config: Creativity, Warmth, and Efficiency
# Use a light bulb as the prompt symbol πŸ’‘, symbolizing creativity
[character]
success_symbol = "[πŸ’‘](bold green)"
error_symbol = "[πŸ’”](bold red)"
# Add 🎨 when in a git repository, symbolizing the art of coding
[git_branch]
symbol = "🎨"
format = "($symbol$branch)"
# Show a symbol of home 🏠 when in the home directory, symbolizing comfort
[directory]
home_symbol = "🏠"
# Use an advanced format with a rocket πŸš€, because we love speedy code
[cmd_duration]
format = " took [πŸš€ $duration]($style)"
min_time = 500 # in milliseconds
# Show the Rust version with gears symbol, because code is like a well-oiled machine βš™οΈ
[rust]
symbol = "βš™οΈ"
# Use a globe symbol 🌍 to show we care about the Node.js environment, symbolizing global reach
[nodejs]
symbol = "🌍"
# Add a magic wand symbol when Python environment is active 🐍✨, symbolizing the magic of Python
[python]
symbol = "🐍✨"
# Compassionate message when a command fails
[status]
format = '[\[$symbol\]($style) $common_meaning($signal_name) πŸ€—]($style)'
not_executable_symbol = "πŸ”’"
not_found_symbol = "πŸ”"
sigint_symbol = "🚦"
signal_symbol = "🚨"
# Display a star πŸ’« next to the hostname, because it's the core of our system
[hostname]
format = "on [πŸ”© $hostname]($style) "
disabled = false
# Display battery status with a lightning bolt ⚑ because technology is electric!
[battery]
full_symbol = "πŸ”‹"
charging_symbol = "⚑"
discharging_symbol = "πŸ’§"
# Add a Nerd Font Wall Clock next to the prompt
[time]
disabled = false
format = '⏳[\[$time\]]($style) '
time_format = '%T'
utc_time_offset = '+1'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment