jnrowe.zsh-theme 958 B

12345678910111213141516171819202122232425262728293031
  1. autoload -U add-zsh-hook
  2. autoload -Uz vcs_info
  3. zstyle ':vcs_info:*' actionformats \
  4. '%F{5}(%f%s%F{5})%F{3}-%F{5}[%F{2}%b%F{3}|%F{1}%a%F{5}]%f '
  5. zstyle ':vcs_info:*' formats \
  6. '%F{2}%s%F{7}:%F{2}(%F{1}%b%F{2})%f '
  7. zstyle ':vcs_info:(sv[nk]|bzr):*' branchformat '%b%F{1}:%F{3}%r'
  8. zstyle ':vcs_info:*' enable git
  9. add-zsh-hook precmd prompt_jnrowe_precmd
  10. prompt_jnrowe_precmd () {
  11. vcs_info
  12. if [ "${vcs_info_msg_0_}" = "" ]; then
  13. dir_status="%F{2}→%f"
  14. elif [[ $(git diff --cached --name-status 2>/dev/null ) != "" ]]; then
  15. dir_status="%F{1}▶%f"
  16. elif [[ $(git diff --name-status 2>/dev/null ) != "" ]]; then
  17. dir_status="%F{3}▶%f"
  18. else
  19. dir_status="%F{2}▶%f"
  20. fi
  21. }
  22. local ret_status="%(?:%{$fg_bold[green]%}Ξ:%{$fg_bold[red]%}%S↑%s%?)"
  23. PROMPT='${ret_status}%{$fg_bold[green]%}%p %{$fg_bold[yellow]%}%2~ ${vcs_info_msg_0_}${dir_status}%{$reset_color%} '
  24. # vim: set ft=zsh ts=4 sw=4 et: