Created
June 21, 2021 16:40
-
-
Save JasonMorgan/10c4f2deec75e1a218d5cb469c14c0c4 to your computer and use it in GitHub Desktop.
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
# 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 | |
[hostname] | |
ssh_only = false | |
format = "[$hostname](bold green) " | |
[username] | |
show_always = true | |
format = "[$user]()@" | |
[git_branch] | |
symbol = "" | |
# truncation_length = 4 | |
# truncation_symbol = "" | |
[git_commit] | |
commit_hash_length = 4 | |
tag_symbol = "🔖 " | |
[git_state] | |
[git_status] | |
ahead = "⇡${count}" | |
diverged = "⇕⇡${ahead_count}⇣${behind_count}" | |
behind = "⇣${count}" | |
conflicted = "🏳" | |
untracked = "🤷${count}" | |
stashed = "📦${count}" | |
modified = "📝${count}" | |
staged = '[++\($count\)](green)' | |
deleted = "✘${count}" | |
[directory] | |
truncate_to_repo = false | |
truncation_symbol = ".../" | |
[env_var] | |
[kubernetes] | |
format = 'on \[[$context:](red)[$namespace](cyan)\] ' | |
# symbol = "☸ " | |
disabled = false | |
[kubernetes.context_aliases] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment