Created
August 3, 2023 13:59
-
-
Save mmgroner/4e8d8842770b7f7edd4b397d663895b2 to your computer and use it in GitHub Desktop.
Starship Configuration File
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 file | |
"$schema" = 'https://starship.rs/config-schema.json' | |
# Inserts a blank line between shell prompts | |
add_newline = true | |
continuation_prompt = "↪ " | |
command_timeout = 1000 | |
# Replace the ">" symbol in the prompt with "λ" | |
[character] # The name of the module we are configuring is "character" | |
success_symbol = "[λ](bold cyan)" # The "success_symbol" segment is being set to "λ" with the color "cyan" | |
error_symbol = "[✘](bold red)" | |
# Disable the package module, hiding it from the prompt completely | |
[package] | |
disabled = true | |
# Disable the AWS module | |
[aws] | |
disabled = true | |
[git_status] | |
stashed='' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment