Created
February 3, 2017 11:16
-
-
Save ohanhi/840cd974754fc35d158336cb770d037c 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
autoload -U colors && colors | |
autoload -Uz vcs_info | |
zstyle ':vcs_info:*' stagedstr '%F{green}•' | |
zstyle ':vcs_info:*' unstagedstr '%F{yellow}•' | |
zstyle ':vcs_info:*' check-for-changes true | |
zstyle ':vcs_info:*' enable git svn | |
theme_precmd () { | |
if [[ -z $(git ls-files --other --exclude-standard 2> /dev/null) ]] { | |
zstyle ':vcs_info:*' formats ' (%b%c%u%F{248})' | |
} else { | |
zstyle ':vcs_info:*' formats ' (%b%c%u%F{red}•%F{248})' | |
} | |
vcs_info | |
} | |
# setopt prompt_subst | |
PROMPT='%F{magenta}%~%F{248}${vcs_info_msg_0_}%{$reset_color%}› ' | |
autoload -U add-zsh-hook | |
add-zsh-hook precmd theme_precmd |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Screenshots
Black on white, Tango:
Solarized Dark, Tango: