Skip to content

Instantly share code, notes, and snippets.

@gabrielfalcao
Created June 16, 2010 16:24
Show Gist options
  • Select an option

  • Save gabrielfalcao/440916 to your computer and use it in GitHub Desktop.

Select an option

Save gabrielfalcao/440916 to your computer and use it in GitHub Desktop.
export TERM="xterm-color"
alias ls="ls -G"
PS1="\[\033[01;32m\]\u@\h\[\033[01;34m\] \w \$\[\033[00m\] "
alias egrep="egrep --colour"
alias grep="egrep --colour"
export PYTHONPATH=$PYTHONPATH:$HOME/usr/python-libs:/Library/Python/2.6/site-packages/
export PATH=$PATH:$HOME/usr/bin:/usr/local/sbin
export GEM_HOME='/usr/local/Cellar/gems/1.8'
export BASH_COMPLETION_PATH=$HOME/usr/bash_completion.d
if [ -f `brew --prefix`/etc/bash_completion ]; then
. `brew --prefix`/etc/bash_completion
fi
for completion in `ls $BASH_COMPLETION_PATH`
do
. $BASH_COMPLETION_PATH/$completion
done
alias nose="nosetests --verbosity=2 -s"
alias gvim="/Applications/MacVim.app/Contents/MacOS/Vim -g"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment