Last active
September 18, 2020 11:45
-
-
Save 1stvamp/4101406c494c2322b95402d5f44bc706 to your computer and use it in GitHub Desktop.
My starship config
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
prompt_order = [ | |
"username", | |
"hostname", | |
"kubernetes", | |
"directory", | |
"git_branch", | |
"git_commit", | |
"git_state", | |
"git_status", | |
"hg_branch", | |
"docker_context", | |
"package", | |
"golang", | |
"java", | |
"nodejs", | |
"php", | |
"python", | |
"ruby", | |
"rust", | |
"terraform", | |
"memory_usage", | |
"env_var", | |
"crystal", | |
"cmd_duration", | |
"custom", | |
# I still prefer to CLI on one line | |
# "line_break", | |
"jobs", | |
"time", | |
"character", | |
] | |
[character] | |
symbol = "β―β" | |
[directory] | |
truncation_length = 5 | |
[git_branch] | |
symbol = "π " | |
style = "grey" | |
[git_state] | |
progress_divider = " of " | |
[git_status] | |
conflicted = "βοΈ " | |
ahead = "ποΈ π¨ " | |
behind = "π’ " | |
diverged = "π± " | |
untracked = "π€οΈ Γ" | |
untracked_count.enabled = true | |
stashed = "π¦ " | |
modified = "π Γ" | |
modified_count.enabled = true | |
staged = "ποΈ Γ" | |
staged_count.enabled = true | |
renamed = "π Γ" | |
renamed_count.enabled = true | |
deleted = "ποΈ Γ" | |
deleted_count.enabled = true | |
prefix = "" | |
suffix = "" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment