Skip to content

Instantly share code, notes, and snippets.

@jstrassburg
Last active August 29, 2015 14:23
Show Gist options
  • Save jstrassburg/8d8eae63a0e4e5743fcc to your computer and use it in GitHub Desktop.
Save jstrassburg/8d8eae63a0e4e5743fcc to your computer and use it in GitHub Desktop.
OSX .profile for git branch and PS1 config
export CLICOLOR=1
export LSCOLORS=GxFxCxDxBxegedabagaced
export PS1="< \w >\[\033[32m\]\$(parse_git_branch)\[\033[00m\] $ "
# git branch in prompt
parse_git_branch() {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment