Skip to content

Instantly share code, notes, and snippets.

@litvinovvo
Created March 22, 2021 11:09
Show Gist options
  • Select an option

  • Save litvinovvo/149ad7e5524339f201e3206cd16d9c1a to your computer and use it in GitHub Desktop.

Select an option

Save litvinovvo/149ad7e5524339f201e3206cd16d9c1a to your computer and use it in GitHub Desktop.
macos zsh git highlight
function parse_git_branch() {
git branch 2> /dev/null | sed -n -e 's/^\* \(.*\)/[\1]/p'
}
setopt PROMPT_SUBST
export PROMPT='%F{grey}%n%f %F{cyan}%~%f %F{green}$(parse_git_branch)%f %F{normal}$%f '
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment