jnrowe.zsh-theme 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. autoload -U add-zsh-hook
  2. autoload -Uz vcs_info
  3. zstyle ':vcs_info:*' disable-patterns "/usr/(ports|src)(|/*)"
  4. zstyle ':vcs_info:*' actionformats \
  5. '%F{5}(%f%s%F{5})%F{3}-%F{5}[%F{2}%b%F{3}|%F{1}%a%F{5}]%f '
  6. zstyle ':vcs_info:*' formats '%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_vcs
  10. prompt_vcs () {
  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. function {
  23. if [[ -n "$SSH_CLIENT" ]]; then
  24. PROMPT_HOST=" ($HOST)"
  25. else
  26. PROMPT_HOST=''
  27. fi
  28. }
  29. local ret_status="%(?:%{$fg_bold[green]%}Ξ:%{$fg_bold[red]%}%S↑%s%?)"
  30. PROMPT='${ret_status}%{$fg[blue]%}${PROMPT_HOST}%{$fg_bold[green]%}%p %{$fg_bold[yellow]%}%2~ ${vcs_info_msg_0_}${dir_status}%{$reset_color%} '
  31. # vim: set ft=zsh ts=4 sw=4 et: