Created
September 2, 2010 20:33
-
-
Save gabrielfalcao/562896 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:$HOME/.node_libraries/.npm | |
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" | |
mydump () { | |
mysqldump --add-drop-table --compact --quick -u root -B $1 | |
} | |
export PATH=$PATH:$HOME/usr/bin | |
export HISTFILESIZE=90000 | |
export HISTCONTROL=ignoredups | |
alias hist='history | grep $1' | |
#export VERSIONER_PYTHON_PREFER_32_BIT=yes |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment