Skip to content

Instantly share code, notes, and snippets.

@leonprou
Created January 15, 2018 08:26
Show Gist options
  • Save leonprou/ce268d1262b96e70fa50369a4f76e12c to your computer and use it in GitHub Desktop.
Save leonprou/ce268d1262b96e70fa50369a4f76e12c to your computer and use it in GitHub Desktop.
export JAVA_HOME=`/usr/libexec/java_home -v 1.8`
export GOOGLE_APPENGINE=/usr/local/google_appengine
export PYTHONPATH=$PYTHONPATH:/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/PIL:/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages
export ANDROID_HOME=/Library/Developer/android-sdk-macosx
export PGDATA=/var/lib/pgsql/data
# 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}"
PATH=$ANDROID_HOME/tools:${PATH}
PATH=$ANDROID_HOME/platform-tools:${PATH}
export PATH
export CLICOLOR=1
export LSCOLORS=GxFxCxDxBxegedabagaced
##
# Your previous /Users/leonprouger/.bash_profile file was backed up as /Users/leonprouger/.bash_profile.macports-saved_2015-04-14_at_10:54:47
##
# MacPorts Installer addition on 2015-04-14_at_10:54:47: 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.
# {{{
# 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
# }}}
export NVM_DIR="/Users/leonprouger/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" # This loads nvm
eval "$(pyenv init -)"
if [ -f $(brew --prefix)/etc/bash_completion ]; then
. $(brew --prefix)/etc/bash_completion
fi
export LC_ALL=en_US.UTF-8
export LANG=en_US.UTF-8
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment