2 if [[ -s ~/.rvm/scripts/rvm ]] ; then 
 
   3   RPS1="%{$fg[yellow]%}rvm:%{$reset_color%}%{$fg[red]%}\$(~/.rvm/bin/rvm-prompt)%{$reset_color%} $EPS1"
 
   5   if which rbenv &> /dev/null; then
 
   6     RPS1="%{$fg[yellow]%}rbenv:%{$reset_color%}%{$fg[red]%}\$(rbenv version | sed -e 's/ (set.*$//')%{$reset_color%} $EPS1"
 
  10 ZSH_THEME_GIT_PROMPT_PREFIX="%{$reset_color%}%{$fg[green]%}["
 
  11 ZSH_THEME_GIT_PROMPT_SUFFIX="]%{$reset_color%}"
 
  12 ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[red]%}*%{$reset_color%}"
 
  13 ZSH_THEME_GIT_PROMPT_CLEAN=""
 
  15 #Customized git status, oh-my-zsh currently does not allow render dirty status before branch
 
  17   local cb=$(current_branch)
 
  19     echo "$(parse_git_dirty)$ZSH_THEME_GIT_PROMPT_PREFIX$(current_branch)$ZSH_THEME_GIT_PROMPT_SUFFIX"
 
  23 PROMPT='$(git_custom_status)%{$fg[cyan]%}[%~% ]%{$reset_color%}%B$%b '