Skip to content

Instantly share code, notes, and snippets.

@luissantos
Created April 22, 2014 17:14
Show Gist options
  • Save luissantos/11187216 to your computer and use it in GitHub Desktop.
Save luissantos/11187216 to your computer and use it in GitHub Desktop.
Faster zsh pronpt git
# add to ~/.zshrc for faster zsh git
function git_prompt_info() {
ref=$(git symbolic-ref HEAD 2> /dev/null) || return
echo "$ZSH_THEME_GIT_PROMPT_PREFIX${ref#refs/heads/}$ZSH_THEME_GIT_PROMPT_CLEAN$ZSH_THEME_GIT_PROMPT_SUFFIX"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment