Created
July 13, 2025 12:57
-
-
Save prameshbajra/035d5f05ce2fc17df61b5cbc18b5d09f to your computer and use it in GitHub Desktop.
My starship configuration
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
# Get editor completions based on the config schema | |
"$schema" = 'https://starship.rs/config-schema.json' | |
# Inserts a blank line between shell prompts | |
add_newline = true | |
# Replace the '❯' symbol in the prompt with '➜' | |
[character] # The name of the module we are configuring is 'character' | |
success_symbol = '[➜](bold green)' # The 'success_symbol' segment is being set to '➜' with the color 'bold green' | |
[aws] | |
symbol = '☁️' | |
format = 'on [$symbol ($profile)(\($region\))]($style)' | |
[cmd_duration] | |
min_time = 10 | |
show_milliseconds = true | |
format = '( ⌛ [$duration](bold white))' | |
[gcloud] | |
disabled = true | |
[java] | |
format = '[${symbol}(${version})]($style)' | |
[kotlin] | |
format = '[$symbol($version)]($style)' | |
[nodejs] | |
format = '[$symbol($version)]($style)' | |
[package] | |
disabled = true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment