Created
May 4, 2016 16:21
-
-
Save gnuwilliam/e50023fd503dfef0a7c0030b341ed6af to your computer and use it in GitHub Desktop.
bash config for OS X
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
# OS X .bashrc | |
# requires brew install bash-completion | |
if [ -f `brew --prefix`/etc/bash_completion ]; then | |
. `brew --prefix`/etc/bash_completion | |
fi | |
GIT_PS1_SHOWDIRTYSTATE=true | |
export PS1='\[\e[1;91m\]\W\[\033[38;5;93m\]$(__git_ps1) \[\e[97m\]\$\[\e[0m\] ' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment