Skip to content

Instantly share code, notes, and snippets.

@camilonova
Created January 28, 2012 16:16
Show Gist options
  • Save camilonova/1694888 to your computer and use it in GitHub Desktop.
Save camilonova/1694888 to your computer and use it in GitHub Desktop.
OSX Lion .profile file
# Virtualenvwrapper
export WORKON_HOME=$HOME/.virtualenvs
source /usr/local/bin/virtualenvwrapper.sh
# Color
export TERM=xterm-color
export CLICOLOR=1
export LSCOLORS=ExFxCxDxBxegedabagacad
# Bash completion
if [ -f `brew --prefix`/etc/bash_completion ]; then
. `brew --prefix`/etc/bash_completion
fi
# Unicode
export LC_ALL=en_US.UTF-8
export LANG=en_US.UTF-8
# Homebrew
export PATH=/usr/local/bin:$PATH
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment