Created
December 15, 2014 15:26
-
-
Save maxclaus/79d85ade3d50e8f2643d 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
ZSH_THEME_GIT_PROMPT_PREFIX="%{$reset_color%}%{$FG[245]%}git:(" | |
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$FG[245]%})%{$reset_color%} " | |
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[red]%}●%{$reset_color%}" | |
ZSH_THEME_GIT_PROMPT_CLEAN="" | |
ZSH_THEME_SVN_PROMPT_PREFIX=$ZSH_THEME_GIT_PROMPT_PREFIX | |
ZSH_THEME_SVN_PROMPT_SUFFIX=$ZSH_THEME_GIT_PROMPT_SUFFIX | |
ZSH_THEME_SVN_PROMPT_DIRTY=$ZSH_THEME_GIT_PROMPT_DIRTY | |
ZSH_THEME_SVN_PROMPT_CLEAN=$ZSH_THEME_GIT_PROMPT_CLEAN | |
vcs_status() { | |
if [[ ( $(whence in_svn) != "" ) && ( $(in_svn) == 1 ) ]]; then | |
svn_prompt_info | |
else | |
git_prompt_info | |
fi | |
} | |
PROMPT='%{$FG[240]%}%2~%{$reset_color%} $(vcs_status)%{$FG[015]%}»%{$reset_color%}%b ' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment