Created
September 28, 2020 15:15
-
-
Save ruralocity/f910550b6419883f00e41850c7f712ce to your computer and use it in GitHub Desktop.
My current Starship.rs configuration file
This file contains 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
# Don't print a new line at the start of the prompt | |
add_newline = false | |
# Disables the line_break module, making the prompt a single line. | |
[line_break] | |
disabled = true | |
# Replace the "❯" symbol in the prompt | |
[character] | |
symbol = "$" | |
# Disable the package module, hiding it from the prompt completely | |
[package] | |
disabled = true | |
# Disable the AWS module; it's noisy | |
[aws] | |
disabled = true | |
# I'd like to be able to get rid of the "on" prefix in a future version | |
[git_branch] | |
symbol = "" | |
# How to make this do something? | |
#[git_commit] | |
#commit_hash_length = 4 | |
[directory] | |
style = "bold cyan" | |
truncate_to_repo = false | |
truncation_length = 5 | |
# Language configs might be useful when they're less wordy someday. | |
[ruby] | |
disabled = true | |
#symbol = " " | |
[nodejs] | |
disabled = true | |
#symbol = "" | |
#style = "bold yellow" | |
[python] | |
disabled = true | |
#symbol = "" | |
#style = "bold green" | |
[golang] | |
disabled = true | |
#symbol = "ﳑ" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment