Last active
August 13, 2024 09:41
-
-
Save drifterz13/988f6c8124d6f3eae09a24bd320d6883 to your computer and use it in GitHub Desktop.
base starship config
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' | |
| # Disable the package module, hiding it from the prompt completely | |
| [package] | |
| disabled = true | |
| [gcloud] | |
| disabled = true | |
| [ruby] | |
| symbol = ' ' | |
| style = 'bold red' | |
| [git_status] | |
| disabled = true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment