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