Skip to content

Instantly share code, notes, and snippets.

@jamiepinkham
Created December 21, 2012 21:29
Show Gist options
  • Save jamiepinkham/4355963 to your computer and use it in GitHub Desktop.
Save jamiepinkham/4355963 to your computer and use it in GitHub Desktop.
export PATH="/usr/local/heroku/bin:$PATH"
if [ -f /usr/local/git/contrib/completion/git-completion.bash ]; then
. /usr/local/git/contrib/completion/git-completion.bash
fi
GIT_PS1_SHOWDIRTYSTATE=true
GIT_PS1_SHOWSTASHSTATE=true
GIT_PS1_SHOWUNTRACKEDFILES=true
if [ -f /opt/local/etc/bash_completion ]; then
   . /opt/local/etc/bash_completion
fi
#PS1='\[\033[32m\]\u@\h\[\033[00m\]:\[\033[34m\]\w\[\033[01;31m\]$(__git_ps1)\[\033[00m\]\$ '
PS1="\[\033[32m\]\u@\h\[\033[00m\]:\[\033[31m\]\W\[\033[00m\]\[\033[36m\]\$(__git_ps1)\[\033[00m\]\$ "
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment