My current Starship.rs configuration file
# 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