Created
June 16, 2010 16:24
-
-
Save gabrielfalcao/440916 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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