Created
March 4, 2021 18:02
-
-
Save davejtoews/40f2742fcf915d53ef2355e910626787 to your computer and use it in GitHub Desktop.
Custom ZSH Theme
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
THEME_GREEN=$FG[113] | |
THEME_ORANGE=$FG[173] | |
THEME_BLUE=$FG[080] | |
THEME_RED=$FG[167] | |
THEME_PURPLE=$FG[134] | |
THEME_YELLOW=$FG[179] | |
PROMPT_SUCCESS_COLOR=$THEME_GREEN | |
PROMPT_FAILURE_COLOR=$THEME_ORANGE | |
PROMPT_PROMPT=$THEME_BLUE | |
GIT_DIRTY_COLOR=$THEME_ORANGE | |
GIT_CLEAN_COLOR=$THEME_GREEN | |
GIT_PROMPT_INFO=$THEME_PURPLE | |
ADDED_COLOR=$THEME_GREEN | |
MODIFIED_COLOR=$THEME_ORANGE | |
DELETED_COLOR=$THEME_RED | |
RENAMED_COLOR=$THEME_ORANGE | |
UNMERGED_COLOR=$THEME_GREEN | |
UNTRACKED_COLOR=$THEME_YELLOW | |
PROMPT="%(?:%{$PROMPT_SUCCESS_COLOR%}➜ :%{$PROMPT_FAILURE_COLOR%}➜ )" | |
PROMPT+=' %{$PROMPT_PROMPT%}%c%{$reset_color%} $(git_prompt_info)$(virtualenv_prompt_info)%{$GIT_DIRTY_COLOR%}$(git_prompt_status) %{$reset_color%}%{$PROMPT_PROMPT%}➤%{$reset_color%} ' | |
ZSH_THEME_GIT_PROMPT_PREFIX="%{$GIT_PROMPT_INFO%}(" | |
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$GIT_PROMPT_INFO%}%{$GIT_PROMPT_INFO%}) " | |
ZSH_THEME_GIT_PROMPT_DIRTY=" %{$GIT_DIRTY_COLOR%}✘" | |
ZSH_THEME_GIT_PROMPT_CLEAN=" %{$GIT_CLEAN_COLOR%}✔" | |
ZSH_THEME_GIT_PROMPT_ADDED="%{$ADDED_COLOR%}✚%{$reset_color%}" | |
ZSH_THEME_GIT_PROMPT_MODIFIED="%{$MODIFIED_COLOR%}✹%{$reset_color%}" | |
ZSH_THEME_GIT_PROMPT_DELETED="%{$DELETED_COLOR%}✖%{$reset_color%}" | |
ZSH_THEME_GIT_PROMPT_RENAMED="%{$RENAMED_COLOR%}➜%{$reset_color%}" | |
ZSH_THEME_GIT_PROMPT_UNMERGED="%{$UNMERGED_COLOR%}═%{$reset_color%}" | |
ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$UNTRACKED_COLOR%}✭%{$reset_color%}" | |
ZSH_THEME_VIRTUALENV_PREFIX=" [" | |
ZSH_THEME_VIRTUALENV_SUFFIX="]" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I used https://bashcolors.com to help pick my colours.