Last active
August 29, 2015 14:11
-
-
Save marcuswestin/2ebbe1e59441a948ee86 to your computer and use it in GitHub Desktop.
curl https://gist.githubusercontent.com/marcuswestin/2ebbe1e59441a948ee86/raw >> ~/.bash_profile && source ~/.bash_profile
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
# ASAPP stuff | |
############# | |
# awsm prompt. Optional | |
PS1="\n\w λ " | |
# Change this next line to wherever your ASAPP repo is/will be | |
export ASAPP_REPO=${HOME}/code/asapp | |
# brew | |
export PATH=/usr/local/bin:$PATH | |
# mysql | |
export PATH=/usr/local/mysql/bin:$PATH | |
# go | |
export GOPATH=${ASAPP_REPO}/go | |
export PATH=${PATH}:${GOPATH}/bin | |
export PATH=${PATH}:/usr/local/go/bin | |
# python | |
export PYTHONPATH=${ASAPP_REPO}/py | |
export PYLEARN2_DATA_PATH=${ASAPP_REPO}/data | |
# js | |
export NODE_PATH=${ASAPP_REPO}/js | |
export PATH=/usr/local/share/npm/bin:$PATH |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment