Skip to content

Instantly share code, notes, and snippets.

@ericclemmons
Created May 31, 2013 16:21
Show Gist options
  • Save ericclemmons/5686118 to your computer and use it in GitHub Desktop.
Save ericclemmons/5686118 to your computer and use it in GitHub Desktop.
cat ~/.profile
export PATH="/usr/local/php5/bin:/usr/local/bin:$PATH"
if [ -f `brew --prefix`/etc/bash_completion ]; then
. `brew --prefix`/etc/bash_completion
fi
GIT_PS1_SHOWDIRTYSTATE="false"
GIT_PS1_SHOWUPSTREAM="false"
PS1='\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[36m\]$(__git_ps1 " [%s]")\[\033[00m\]\$ '
function _update_ps1()
{
export PS1="$(~/Sites/milkbikis/powerline-bash/powerline-bash.py $?)"
}
export PROMPT_COMMAND="_update_ps1"
export CLICOLOR=1
eval "$(rbenv init -)"
eval "$(vagrant-shim enable)"
### Added by the Heroku Toolbelt
export PATH="/usr/local/heroku/bin:$PATH"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment