Created
July 10, 2012 23:43
-
-
Save hcwiley/3086983 to your computer and use it in GitHub Desktop.
this is my bash_profile
This file contains 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
# Setting PATH for Python 2.7 | |
# The orginal version is saved in .bash_profile.pysave | |
PATH="/Library/Frameworks/Python.framework/Versions/2.7/bin:${PATH}" | |
export PATH | |
#test -r /sw/bin/init.sh && . /sw/bin/init.sh | |
export PATH=/usr/local/mysql/bin:$PATH | |
export PATH=/Library/PostgreSQL/9.1/bin:$PATH | |
PYTHONPATH="/usr/local/lib":$PYTHONPATH | |
export PYTHONPATH | |
alias art72='cd /Users/hcwiley/decode72/art72/hg/art72/portfolio' | |
alias runserver='python manage.py runserver 0.0.0.0:8000' | |
alias syncdb='python manage.py syncdb' | |
alias mig='python manage.py migrate' | |
alias shell='python manage.py shell' | |
alias hcw='cd /Users/hcwiley/decode72/hcwiley-django/portfolio' | |
alias decode72='cd /Users/hcwiley/decode72' | |
alias kinobi='cd /Users/hcwiley/kinobi/' | |
alias code_art='cd /Users/hcwiley/decode72/code-art/git/code.art/code.art72.org/tub' | |
alias git='hub' | |
alias vim='/Applications/MacVim.app/Contents/MacOS/Vim' | |
## | |
# Your previous /Users/hcwiley/.bash_profile file was backed up as /Users/hcwiley/.bash_profile.macports-saved_2012-03-01_at_19:24:52 | |
## | |
# MacPorts Installer addition on 2012-03-01_at_19:24:52: adding an appropriate PATH variable for use with MacPorts. | |
export PATH=/opt/local/bin:/opt/local/sbin:$PATH | |
# Finished adapting your PATH environment variable for use with MacPorts. | |
# Add local node modules to the path | |
export PATH=./node_modules/.bin:$PATH | |
# {{{ | |
# Node Completion - Auto-generated, do not touch. | |
shopt -s progcomp | |
for f in $(command ls ~/.node-completion); do | |
f="$HOME/.node-completion/$f" | |
test -f "$f" && . "$f" | |
done | |
# }}} | |
#git stuff | |
source ~/github/git-completion.bash | |
alias gcam='git commit -am' | |
# Setting PATH for Python 2.7 | |
# The orginal version is saved in .bash_profile.pysave | |
PATH="/Library/Frameworks/Python.framework/Versions/2.7/bin:${PATH}" | |
export PATH |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment