ohmyzsh/themes/eastwood.zsh-theme
Jared Hancock b6bb141649 Use a vcs library and add a Mercurial plugin
Move git_* functions to vcs_* to allow for better plugin support
Modify plugins to use the new function names and declare new variable
names, so ZSH_THEME_GIT_* variables are ZSH_THEME_VCS_* and
git_prompt_info() is vcs_prompt_info()
2011-04-07 22:59:01 -05:00

19 lines
711 B
Bash

#RVM settings
if [[ -s ~/.rvm/scripts/rvm ]] ; then
RPS1="%{$fg[yellow]%}rvm:%{$reset_color%}%{$fg[red]%}\$(~/.rvm/bin/rvm-prompt)%{$reset_color%} $EPS1"
fi
ZSH_THEME_VCS_PROMPT_PREFIX="%{$reset_color%}%{$fg[green]%}["
ZSH_THEME_VCS_PROMPT_SUFFIX="]%{$reset_color%}"
ZSH_THEME_VCS_PROMPT_DIRTY="%{$fg[red]%}*%{$reset_color%}"
ZSH_THEME_VCS_PROMPT_CLEAN=""
#Customized git status, oh-my-zsh currently does not allow render dirty status before branch
git_custom_status() {
local cb=$(current_branch)
if [ -n "$cb" ]; then
echo "$(parse_vcs_dirty)$ZSH_THEME_VCS_PROMPT_PREFIX$(current_branch)$ZSH_THEME_VCS_PROMPT_SUFFIX"
fi
}
PROMPT='$(git_custom_status)%{$fg[cyan]%}[%~% ]%{$reset_color%}%B$%b '