Created
April 22, 2015 20:53
-
-
Save kingbin/63148c9d497f0776217f 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
### PATH for MySQL | |
##export PATH=/usr/local/mysql/bin:$PATH | |
## | |
### PATH for MongoDB | |
##export PATH=/Applications/mongodb-osx-x86_64-2.0.0/bin:$PATH | |
# | |
export PATH=/Library/Frameworks/GDAL.framework/Programs:$PATH | |
# Add home dir scripts to the path | |
export PATH=~/bin:$PATH | |
## PATH for MAMP | |
#export PATH=/Applications/MAMP/Library/bin:$PATH | |
## PATH for Haskell | |
export PATH=$HOME/Library/Haskell/bin:$PATH | |
## PATH for cabal | |
export PATH=$HOME/.cabal/bin:$PATH | |
# PATH for GO | |
export GOPATH=$HOME/go | |
export PATH=$PATH:$GOPATH/bin | |
# PATH for Android Development | |
export SDK_ROOT=$HOME/Development/Android/sdk | |
export PATH=$PATH:$SDK_ROOT/platform-tools | |
export GRADLE_HOME=$HOME/Development/Android/gradle | |
export PATH=$PATH:$GRADLE_HOME/bin/ | |
PATH="$PATH:$HOME/bin:/usr/local/git/bin:/usr/local/bin/java:/usr/local/sbin:/usr/local/bin:/usr/bin:/usr/sbin:/bin:/sbin:/usr/include/crypto++:/usr/local/share/npm/bin" | |
export PATH | |
##NVM | |
. ~/.nvm/nvm.sh | |
#[[ -r $NVM_DIR/bash_completion ]] && . $NVM_DIR/bash_completion | |
# The next line updates PATH for the Google Cloud SDK. | |
#source '$HOME/google-cloud-sdk/path.bash.inc' | |
export PATH="$PATH:$HOME/google-cloud-sdk/bin" | |
# The next line enables bash completion for gcloud. | |
#source '$HOME/google-cloud-sdk/completion.bash.inc' | |
# MaTex helper for path variables | |
eval `/usr/libexec/path_helper -s` | |
export TEXBIN_ROOT=/usr/texbin | |
export PATH=$PATH:$TEXBIN_ROOT | |
## Calabash | |
export GEM_HOME=~/.calabash | |
export GEM_PATH=~/.calabash | |
export PATH="$HOME/.calabash/bin:$PATH" | |
## RVM | |
#echo "Going to load RVM" | |
[[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm" # This loads RVM into a shell session. | |
CLASSPATH="$CLASSPATH:/usr/local/bin/java" | |
export CLASSPATH | |
export SVN_EDITOR=vim |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment