agnoster.zsh-theme 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237
  1. # vim:ft=zsh ts=2 sw=2 sts=2
  2. #
  3. # agnoster's Theme - https://gist.github.com/3712874
  4. # A Powerline-inspired theme for ZSH
  5. #
  6. # # README
  7. #
  8. # In order for this theme to render correctly, you will need a
  9. # [Powerline-patched font](https://github.com/Lokaltog/powerline-fonts).
  10. # Make sure you have a recent version: the code points that Powerline
  11. # uses changed in 2012, and older versions will display incorrectly,
  12. # in confusing ways.
  13. #
  14. # In addition, I recommend the
  15. # [Solarized theme](https://github.com/altercation/solarized/) and, if you're
  16. # using it on Mac OS X, [iTerm 2](https://iterm2.com/) over Terminal.app -
  17. # it has significantly better color fidelity.
  18. #
  19. # If using with "light" variant of the Solarized color schema, set
  20. # SOLARIZED_THEME variable to "light". If you don't specify, we'll assume
  21. # you're using the "dark" variant.
  22. #
  23. # # Goals
  24. #
  25. # The aim of this theme is to only show you *relevant* information. Like most
  26. # prompts, it will only show git information when in a git working directory.
  27. # However, it goes a step further: everything from the current user and
  28. # hostname to whether the last call exited with an error to whether background
  29. # jobs are running in this shell will all be displayed automatically when
  30. # appropriate.
  31. ### Segment drawing
  32. # A few utility functions to make it easy and re-usable to draw segmented prompts
  33. CURRENT_BG='NONE'
  34. case ${SOLARIZED_THEME:-dark} in
  35. light) CURRENT_FG='white';;
  36. *) CURRENT_FG='black';;
  37. esac
  38. # Special Powerline characters
  39. () {
  40. local LC_ALL="" LC_CTYPE="en_US.UTF-8"
  41. # NOTE: This segment separator character is correct. In 2012, Powerline changed
  42. # the code points they use for their special characters. This is the new code point.
  43. # If this is not working for you, you probably have an old version of the
  44. # Powerline-patched fonts installed. Download and install the new version.
  45. # Do not submit PRs to change this unless you have reviewed the Powerline code point
  46. # history and have new information.
  47. # This is defined using a Unicode escape sequence so it is unambiguously readable, regardless of
  48. # what font the user is viewing this source code in. Do not replace the
  49. # escape sequence with a single literal character.
  50. # Do not change this! Do not make it '\u2b80'; that is the old, wrong code point.
  51. SEGMENT_SEPARATOR=$'\ue0b0'
  52. }
  53. # Begin a segment
  54. # Takes two arguments, background and foreground. Both can be omitted,
  55. # rendering default background/foreground.
  56. prompt_segment() {
  57. local bg fg
  58. [[ -n $1 ]] && bg="%K{$1}" || bg="%k"
  59. [[ -n $2 ]] && fg="%F{$2}" || fg="%f"
  60. if [[ $CURRENT_BG != 'NONE' && $1 != $CURRENT_BG ]]; then
  61. echo -n " %{$bg%F{$CURRENT_BG}%}$SEGMENT_SEPARATOR%{$fg%} "
  62. else
  63. echo -n "%{$bg%}%{$fg%} "
  64. fi
  65. CURRENT_BG=$1
  66. [[ -n $3 ]] && echo -n $3
  67. }
  68. # End the prompt, closing any open segments
  69. prompt_end() {
  70. if [[ -n $CURRENT_BG ]]; then
  71. echo -n " %{%k%F{$CURRENT_BG}%}$SEGMENT_SEPARATOR"
  72. else
  73. echo -n "%{%k%}"
  74. fi
  75. echo -n "%{%f%}"
  76. CURRENT_BG=''
  77. }
  78. ### Prompt components
  79. # Each component will draw itself, and hide itself if no information needs to be shown
  80. # Context: user@hostname (who am I and where am I)
  81. prompt_context() {
  82. if [[ "$USER" != "$DEFAULT_USER" || -n "$SSH_CLIENT" ]]; then
  83. prompt_segment black default "%(!.%{%F{yellow}%}.)$USER@%m"
  84. fi
  85. }
  86. # Git: branch/detached head, dirty status
  87. prompt_git() {
  88. (( $+commands[git] )) || return
  89. local PL_BRANCH_CHAR
  90. () {
  91. local LC_ALL="" LC_CTYPE="en_US.UTF-8"
  92. PL_BRANCH_CHAR=$'\ue0a0' # 
  93. }
  94. local ref dirty mode repo_path
  95. if $(git rev-parse --is-inside-work-tree >/dev/null 2>&1); then
  96. repo_path=$(git rev-parse --git-dir 2>/dev/null)
  97. dirty=$(parse_git_dirty)
  98. ref=$(git symbolic-ref HEAD 2> /dev/null) || ref="➦ $(git rev-parse --short HEAD 2> /dev/null)"
  99. if [[ -n $dirty ]]; then
  100. prompt_segment yellow black
  101. else
  102. prompt_segment green $CURRENT_FG
  103. fi
  104. if [[ -e "${repo_path}/BISECT_LOG" ]]; then
  105. mode=" <B>"
  106. elif [[ -e "${repo_path}/MERGE_HEAD" ]]; then
  107. mode=" >M<"
  108. elif [[ -e "${repo_path}/rebase" || -e "${repo_path}/rebase-apply" || -e "${repo_path}/rebase-merge" || -e "${repo_path}/../.dotest" ]]; then
  109. mode=" >R>"
  110. fi
  111. setopt promptsubst
  112. autoload -Uz vcs_info
  113. zstyle ':vcs_info:*' enable git
  114. zstyle ':vcs_info:*' get-revision true
  115. zstyle ':vcs_info:*' check-for-changes true
  116. zstyle ':vcs_info:*' stagedstr '✚'
  117. zstyle ':vcs_info:*' unstagedstr '●'
  118. zstyle ':vcs_info:*' formats ' %u%c'
  119. zstyle ':vcs_info:*' actionformats ' %u%c'
  120. vcs_info
  121. echo -n "${ref/refs\/heads\//$PL_BRANCH_CHAR }${vcs_info_msg_0_%% }${mode}"
  122. fi
  123. }
  124. prompt_bzr() {
  125. (( $+commands[bzr] )) || return
  126. if (bzr status >/dev/null 2>&1); then
  127. status_mod=`bzr status | head -n1 | grep "modified" | wc -m`
  128. status_all=`bzr status | head -n1 | wc -m`
  129. revision=`bzr log | head -n2 | tail -n1 | sed 's/^revno: //'`
  130. if [[ $status_mod -gt 0 ]] ; then
  131. prompt_segment yellow black
  132. echo -n "bzr@"$revision "✚ "
  133. else
  134. if [[ $status_all -gt 0 ]] ; then
  135. prompt_segment yellow black
  136. echo -n "bzr@"$revision
  137. else
  138. prompt_segment green black
  139. echo -n "bzr@"$revision
  140. fi
  141. fi
  142. fi
  143. }
  144. prompt_hg() {
  145. (( $+commands[hg] )) || return
  146. local rev st branch
  147. if $(hg id >/dev/null 2>&1); then
  148. if $(hg prompt >/dev/null 2>&1); then
  149. if [[ $(hg prompt "{status|unknown}") = "?" ]]; then
  150. # if files are not added
  151. prompt_segment red white
  152. st='±'
  153. elif [[ -n $(hg prompt "{status|modified}") ]]; then
  154. # if any modification
  155. prompt_segment yellow black
  156. st='±'
  157. else
  158. # if working copy is clean
  159. prompt_segment green $CURRENT_FG
  160. fi
  161. echo -n $(hg prompt "☿ {rev}@{branch}") $st
  162. else
  163. st=""
  164. rev=$(hg id -n 2>/dev/null | sed 's/[^-0-9]//g')
  165. branch=$(hg id -b 2>/dev/null)
  166. if `hg st | grep -q "^\?"`; then
  167. prompt_segment red black
  168. st='±'
  169. elif `hg st | grep -q "^[MA]"`; then
  170. prompt_segment yellow black
  171. st='±'
  172. else
  173. prompt_segment green $CURRENT_FG
  174. fi
  175. echo -n "☿ $rev@$branch" $st
  176. fi
  177. fi
  178. }
  179. # Dir: current working directory
  180. prompt_dir() {
  181. prompt_segment blue $CURRENT_FG '%~'
  182. }
  183. # Virtualenv: current working virtualenv
  184. prompt_virtualenv() {
  185. local virtualenv_path="$VIRTUAL_ENV"
  186. if [[ -n $virtualenv_path && -n $VIRTUAL_ENV_DISABLE_PROMPT ]]; then
  187. prompt_segment blue black "(`basename $virtualenv_path`)"
  188. fi
  189. }
  190. # Status:
  191. # - was there an error
  192. # - am I root
  193. # - are there background jobs?
  194. prompt_status() {
  195. local -a symbols=()
  196. [[ $RETVAL -ne 0 ]] && symbols+="%{%F{red}%}✘"
  197. [[ $UID -eq 0 ]] && symbols+="%{%F{yellow}%}⚡"
  198. [[ $(jobs -l | wc -l) -gt 0 ]] && symbols+="%{%F{cyan}%}⚙"
  199. [[ -n "$symbols" ]] && prompt_segment black default "$symbols"
  200. }
  201. ## Main prompt
  202. build_prompt() {
  203. RETVAL=$?
  204. prompt_status
  205. prompt_virtualenv
  206. prompt_context
  207. prompt_dir
  208. prompt_git
  209. prompt_bzr
  210. prompt_hg
  211. prompt_end
  212. }
  213. PROMPT='%{%f%b%k%}$(build_prompt) '