Last active
August 29, 2015 14:23
-
-
Save jstrassburg/8d8eae63a0e4e5743fcc to your computer and use it in GitHub Desktop.
OSX .profile for git branch and PS1 config
This file contains 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
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