All of my important config files
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

250 lines
7.5 KiB

  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}%}.)%n@%m"
  84. fi
  85. }
  86. # Git: branch/detached head, dirty status
  87. prompt_git() {
  88. (( $+commands[git] )) || return
  89. if [[ "$(git config --get oh-my-zsh.hide-status 2>/dev/null)" = 1 ]]; then
  90. return
  91. fi
  92. local PL_BRANCH_CHAR
  93. () {
  94. local LC_ALL="" LC_CTYPE="en_US.UTF-8"
  95. PL_BRANCH_CHAR=$'\ue0a0' # 
  96. }
  97. local ref dirty mode repo_path
  98. if $(git rev-parse --is-inside-work-tree >/dev/null 2>&1); then
  99. repo_path=$(git rev-parse --git-dir 2>/dev/null)
  100. dirty=$(parse_git_dirty)
  101. ref=$(git symbolic-ref HEAD 2> /dev/null) || ref="➦ $(git rev-parse --short HEAD 2> /dev/null)"
  102. if [[ -n $dirty ]]; then
  103. prompt_segment yellow black
  104. else
  105. prompt_segment green $CURRENT_FG
  106. fi
  107. if [[ -e "${repo_path}/BISECT_LOG" ]]; then
  108. mode=" <B>"
  109. elif [[ -e "${repo_path}/MERGE_HEAD" ]]; then
  110. mode=" >M<"
  111. elif [[ -e "${repo_path}/rebase" || -e "${repo_path}/rebase-apply" || -e "${repo_path}/rebase-merge" || -e "${repo_path}/../.dotest" ]]; then
  112. mode=" >R>"
  113. fi
  114. setopt promptsubst
  115. autoload -Uz vcs_info
  116. zstyle ':vcs_info:*' enable git
  117. zstyle ':vcs_info:*' get-revision true
  118. zstyle ':vcs_info:*' check-for-changes true
  119. zstyle ':vcs_info:*' stagedstr '✚'
  120. zstyle ':vcs_info:*' unstagedstr '●'
  121. zstyle ':vcs_info:*' formats ' %u%c'
  122. zstyle ':vcs_info:*' actionformats ' %u%c'
  123. vcs_info
  124. echo -n "${ref/refs\/heads\//$PL_BRANCH_CHAR }${vcs_info_msg_0_%% }${mode}"
  125. fi
  126. }
  127. prompt_bzr() {
  128. (( $+commands[bzr] )) || return
  129. if (bzr status >/dev/null 2>&1); then
  130. status_mod=`bzr status | head -n1 | grep "modified" | wc -m`
  131. status_all=`bzr status | head -n1 | wc -m`
  132. revision=`bzr log | head -n2 | tail -n1 | sed 's/^revno: //'`
  133. if [[ $status_mod -gt 0 ]] ; then
  134. prompt_segment yellow black
  135. echo -n "bzr@"$revision "✚ "
  136. else
  137. if [[ $status_all -gt 0 ]] ; then
  138. prompt_segment yellow black
  139. echo -n "bzr@"$revision
  140. else
  141. prompt_segment green black
  142. echo -n "bzr@"$revision
  143. fi
  144. fi
  145. fi
  146. }
  147. prompt_hg() {
  148. (( $+commands[hg] )) || return
  149. local rev st branch
  150. if $(hg id >/dev/null 2>&1); then
  151. if $(hg prompt >/dev/null 2>&1); then
  152. if [[ $(hg prompt "{status|unknown}") = "?" ]]; then
  153. # if files are not added
  154. prompt_segment red white
  155. st='±'
  156. elif [[ -n $(hg prompt "{status|modified}") ]]; then
  157. # if any modification
  158. prompt_segment yellow black
  159. st='±'
  160. else
  161. # if working copy is clean
  162. prompt_segment green $CURRENT_FG
  163. fi
  164. echo -n $(hg prompt "☿ {rev}@{branch}") $st
  165. else
  166. st=""
  167. rev=$(hg id -n 2>/dev/null | sed 's/[^-0-9]//g')
  168. branch=$(hg id -b 2>/dev/null)
  169. if `hg st | grep -q "^\?"`; then
  170. prompt_segment red black
  171. st='±'
  172. elif `hg st | grep -q "^[MA]"`; then
  173. prompt_segment yellow black
  174. st='±'
  175. else
  176. prompt_segment green $CURRENT_FG
  177. fi
  178. echo -n "☿ $rev@$branch" $st
  179. fi
  180. fi
  181. }
  182. # Dir: current working directory
  183. prompt_dir() {
  184. prompt_segment blue $CURRENT_FG '%~'
  185. }
  186. # Virtualenv: current working virtualenv
  187. prompt_virtualenv() {
  188. local virtualenv_path="$VIRTUAL_ENV"
  189. if [[ -n $virtualenv_path && -n $VIRTUAL_ENV_DISABLE_PROMPT ]]; then
  190. prompt_segment blue black "(`basename $virtualenv_path`)"
  191. fi
  192. }
  193. # Status:
  194. # - was there an error
  195. # - am I root
  196. # - are there background jobs?
  197. prompt_status() {
  198. local -a symbols
  199. [[ $RETVAL -ne 0 ]] && symbols+="%{%F{red}%}✘ %?"
  200. [[ $UID -eq 0 ]] && symbols+="%{%F{yellow}%}⚡"
  201. [[ $(jobs -l | wc -l) -gt 0 ]] && symbols+="%{%F{cyan}%}⚙"
  202. [[ -n "$symbols" ]] && prompt_segment black default "$symbols"
  203. }
  204. #AWS Profile:
  205. # - display current AWS_PROFILE name
  206. # - displays yellow on red if profile name contains 'production' or
  207. # ends in '-prod'
  208. # - displays black on green otherwise
  209. prompt_aws() {
  210. [[ -z "$AWS_PROFILE" ]] && return
  211. case "$AWS_PROFILE" in
  212. *-prod|*production*) prompt_segment red yellow "AWS: $AWS_PROFILE" ;;
  213. *) prompt_segment green black "AWS: $AWS_PROFILE" ;;
  214. esac
  215. }
  216. ## Main prompt
  217. build_prompt() {
  218. RETVAL=$?
  219. prompt_status
  220. prompt_virtualenv
  221. prompt_context
  222. prompt_dir
  223. prompt_git
  224. prompt_end
  225. }
  226. PROMPT='%{%f%b%k%}$(build_prompt) '