Created
June 2, 2014 16:46
-
-
Save halcyon/f2546c835f158186338e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function _prompt_char() { | |
| if $(git rev-parse --is-inside-work-tree >/dev/null 2>&1); then | |
| echo "%{%F{blue}%}±%{%f%k%b%}" | |
| else | |
| echo ' ' | |
| fi | |
| } | |
| # This theme works with both the "dark" and "light" variants of the | |
| # Solarized color schema. Set the SOLARIZED_THEME variable to one of | |
| # these two values to choose. If you don't specify, we'll assume you're | |
| # using the "dark" variant. | |
| case ${SOLARIZED_THEME:-dark} in | |
| light) bkg=white;; | |
| *) bkg=black;; | |
| esac | |
| ZSH_THEME_GIT_PROMPT_PREFIX=" [%{%B%F{blue}%}" | |
| ZSH_THEME_GIT_PROMPT_SUFFIX="%{%f%k%b%K{${bkg}}%B%F{green}%}]" | |
| ZSH_THEME_GIT_PROMPT_DIRTY=" %{%F{red}%}⚡%{%f%k%b%}" | |
| ZSH_THEME_GIT_PROMPT_CLEAN="" | |
| ZSH_THEME_GIT_PROMPT_AHEAD_REMOTE="%{%F{red}%}↑%{%f%k%b%K{${bkg}}%B%F{green}%}" | |
| ZSH_THEME_GIT_PROMPT_BEHIND_REMOTE="%{%F{red}%}↓%{%f%k%b%K{${bkg}}%B%F{green}%}" | |
| ZSH_THEME_GIT_PROMPT_DIVERGED_REMOTE="%{%F{red}%}↕%{%f%k%b%K{${bkg}}%B%F{green}%}" | |
| PROMPT='%{%f%k%b%} | |
| %{%K{${bkg}}%B%F{green}%}%n%{%B%F{blue}%}@%{%B%F{cyan}%}%m%{%B%F{green}%} %{%b%F{yellow}%K{${bkg}}%}%~%{%B%F{green}%}$(git_prompt_info) $(git_remote_status)%E%{%f%k%b%} | |
| %{%K{${bkg}}%}$(_prompt_char)%{%K{${bkg}}%} %#%{%f%k%b%} ' | |
| RPROMPT='!%{%B%F{cyan}%}%!%{%f%k%b%}' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment