Skip to content

Instantly share code, notes, and snippets.

@sathed
Created February 20, 2020 22:00
Show Gist options
  • Save sathed/bcd5161da4edc45e26661210ea321a92 to your computer and use it in GitHub Desktop.
Save sathed/bcd5161da4edc45e26661210ea321a92 to your computer and use it in GitHub Desktop.
Git branch in (zsh) terminal on Mac.
function parse_git_branch() {
git branch 2> /dev/null | sed -n -e 's/^\* \(.*\)/[\1]/p'
}
COLOR_DEF=$'\e[0m'
COLOR_USR=$'\e[38;5;243m'
COLOR_DIR=$'\e[38;5;197m'
COLOR_GIT=$'\e[38;5;39m'
setopt PROMPT_SUBST
export PROMPT='${COLOR_USR}%n ${COLOR_DIR}%~ ${COLOR_GIT}$(parse_git_branch)${COLOR_DEF} $ '
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment