gallois.zsh-theme 700 B

12345678910111213141516171819
  1. ZSH_THEME_GIT_PROMPT_PREFIX="%{$reset_color%}%{$fg[green]%}["
  2. ZSH_THEME_GIT_PROMPT_SUFFIX="]%{$reset_color%}"
  3. ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[red]%}*%{$reset_color%}"
  4. ZSH_THEME_GIT_PROMPT_CLEAN=""
  5. #Customized git status, oh-my-zsh currently does not allow render dirty status before branch
  6. git_custom_status() {
  7. local cb=$(current_branch)
  8. if [ -n "$cb" ]; then
  9. echo "$(parse_git_dirty)$ZSH_THEME_GIT_PROMPT_PREFIX$(current_branch)$ZSH_THEME_GIT_PROMPT_SUFFIX"
  10. fi
  11. }
  12. #RVM and git settings
  13. if [[ -s ~/.rvm/scripts/rvm ]] ; then
  14. RPS1='$(git_custom_status)%{$fg[red]%}[`~/.rvm/bin/rvm-prompt`]%{$reset_color%} $EPS1'
  15. fi
  16. PROMPT='%{$fg[cyan]%}[%~% ]%(?.%{$fg[green]%}.%{$fg[red]%})%B$%b '