Skip to content

Instantly share code, notes, and snippets.

@Osse
Created September 8, 2012 12:42
Show Gist options
  • Save Osse/3674560 to your computer and use it in GitHub Desktop.
Save Osse/3674560 to your computer and use it in GitHub Desktop.
vcs info hack
function precmd() {
if [[ -z $(git ls-files --others --exclude-standard 2> /dev/null) ]] {
zstyle ':vcs_info:*' formats '%F{72}[%b%c%u%F{72}]%f'
} else {
zstyle ':vcs_info:*' formats '%F{72}[%b%c%u%F{red}•%F{72}]%f'
}
vcs_info
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment