Skip to content

Instantly share code, notes, and snippets.

@camilonova
Last active November 20, 2015 16:00
Show Gist options
  • Save camilonova/2819580 to your computer and use it in GitHub Desktop.
Save camilonova/2819580 to your computer and use it in GitHub Desktop.
Bash profile osx lion
# Locale
export LC_ALL=en_US.UTF-8
export LANG=en_US.UTF-8
# Homebrew
export PATH="/usr/local/bin:/usr/local/sbin:$PATH"
export PYTHONPATH="/usr/local/lib/python2.7/site-packages:$PYTHONPATH"
# Brew autocomplete
source `brew --prefix`/Library/Contributions/brew_bash_completion.sh
if [ -f `brew --prefix`/etc/bash_completion ]; then
. `brew --prefix`/etc/bash_completion
fi
# Virtualenvwrapper
export WORKON_HOME=$HOME/.virtualenvs
source /usr/local/bin/virtualenvwrapper.sh
# ls colored output
export CLICOLOR=1
export LSCOLORS=ExFxCxDxBxegedabagacad
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment