Created
March 22, 2021 11:09
-
-
Save litvinovvo/149ad7e5524339f201e3206cd16d9c1a to your computer and use it in GitHub Desktop.
macos zsh git highlight
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 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