Skip to content

Instantly share code, notes, and snippets.

@StevenPartridge
Created July 15, 2020 21:51
Show Gist options
  • Save StevenPartridge/e074cf1d8128592886453503435f40f9 to your computer and use it in GitHub Desktop.
Save StevenPartridge/e074cf1d8128592886453503435f40f9 to your computer and use it in GitHub Desktop.
parse_git_branch () {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/\1/'
}
PS1='\[\033[38;5;10m\]\u\[$(tput sgr0)\]\[\033[38;5;9m\]@\[$(tput sgr0)\]\[\033[38;5;220m\]\W\[$(tput sgr0)\]\[\033[38;5;15m\]:$(parse_git_branch)\n\\$ \[$(tput sgr0)\]'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment