steeef.zsh-theme 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. # prompt style and colors based on Steve Losh's Prose theme:
  2. # http://github.com/sjl/oh-my-zsh/blob/master/themes/prose.zsh-theme
  3. #
  4. # vcs_info modifications from Bart Trojanowski's zsh prompt:
  5. # http://www.jukie.net/bart/blog/pimping-out-zsh-prompt
  6. #
  7. # git untracked files modification from Brian Carper:
  8. # http://briancarper.net/blog/570/git-info-in-your-zsh-prompt
  9. function virtualenv_info {
  10. [ $VIRTUAL_ENV ] && echo '('`basename $VIRTUAL_ENV`') '
  11. }
  12. PR_GIT_UPDATE=1
  13. setopt prompt_subst
  14. autoload colors
  15. colors
  16. autoload -U add-zsh-hook
  17. autoload -Uz vcs_info
  18. #use extended color pallete if available
  19. if [[ $TERM = *256color* || $TERM = *rxvt* ]]; then
  20. turquoise="%F{81}"
  21. orange="%F{166}"
  22. purple="%F{135}"
  23. hotpink="%F{161}"
  24. limegreen="%F{118}"
  25. else
  26. turquoise="$fg[cyan]"
  27. orange="$fg[yellow]"
  28. purple="$fg[magenta]"
  29. hotpink="$fg[red]"
  30. limegreen="$fg[green]"
  31. fi
  32. # enable VCS systems you use
  33. zstyle ':vcs_info:*' enable git svn
  34. # check-for-changes can be really slow.
  35. # you should disable it, if you work with large repositories
  36. zstyle ':vcs_info:*:prompt:*' check-for-changes true
  37. # set formats
  38. # %b - branchname
  39. # %u - unstagedstr (see below)
  40. # %c - stagedstr (see below)
  41. # %a - action (e.g. rebase-i)
  42. # %R - repository path
  43. # %S - path in the repository
  44. PR_RST="%{${reset_color}%}"
  45. FMT_BRANCH="(%{$turquoise%}%b%u%c${PR_RST})"
  46. FMT_ACTION="(%{$limegreen%}%a${PR_RST})"
  47. FMT_UNSTAGED="%{$orange%}●"
  48. FMT_STAGED="%{$limegreen%}●"
  49. zstyle ':vcs_info:*:prompt:*' unstagedstr "${FMT_UNSTAGED}"
  50. zstyle ':vcs_info:*:prompt:*' stagedstr "${FMT_STAGED}"
  51. zstyle ':vcs_info:*:prompt:*' actionformats "${FMT_BRANCH}${FMT_ACTION}"
  52. zstyle ':vcs_info:*:prompt:*' formats "${FMT_BRANCH}"
  53. zstyle ':vcs_info:*:prompt:*' nvcsformats ""
  54. function steeef_preexec {
  55. case "$(history $HISTCMD)" in
  56. *git*)
  57. PR_GIT_UPDATE=1
  58. ;;
  59. *svn*)
  60. PR_GIT_UPDATE=1
  61. ;;
  62. esac
  63. }
  64. add-zsh-hook preexec steeef_preexec
  65. function steeef_chpwd {
  66. PR_GIT_UPDATE=1
  67. }
  68. add-zsh-hook chpwd steeef_chpwd
  69. function steeef_precmd {
  70. if [[ -n "$PR_GIT_UPDATE" ]] ; then
  71. # check for untracked files or updated submodules, since vcs_info doesn't
  72. if git ls-files --other --exclude-standard --directory 2> /dev/null | grep -q "."; then
  73. PR_GIT_UPDATE=1
  74. FMT_BRANCH="(%{$turquoise%}%b%u%c%{$hotpink%}●${PR_RST})"
  75. else
  76. FMT_BRANCH="(%{$turquoise%}%b%u%c${PR_RST})"
  77. fi
  78. zstyle ':vcs_info:*:prompt:*' formats "${FMT_BRANCH}"
  79. vcs_info 'prompt'
  80. PR_GIT_UPDATE=
  81. fi
  82. }
  83. add-zsh-hook precmd steeef_precmd
  84. PROMPT=$'
  85. %{$purple%}%n%{$reset_color%} at %{$orange%}%m%{$reset_color%} in %{$limegreen%}%~%{$reset_color%} $vcs_info_msg_0_
  86. $(virtualenv_info)$ '