2019-08-18 02:07:17 +02:00
|
|
|
# Set architecture flags
|
|
|
|
export ARCHFLAGS="-arch x86_64"
|
|
|
|
|
|
|
|
# Prefer US English and use UTF-8
|
|
|
|
export LC_ALL="en_US.UTF-8"
|
|
|
|
export LANG="en_US"
|
|
|
|
|
|
|
|
# ---------------------------------------------------
|
|
|
|
# PATH
|
|
|
|
# ---------------------------------------------------
|
|
|
|
|
|
|
|
export PATH=$HOME/.bin:/usr/local/bin:"$(brew --prefix openssl)/bin":"$(brew --prefix ruby)/bin":"/usr/local/lib/ruby/gems/2.6.0/bin":"$(brew --prefix python)/libexec/bin":"$HOME/.go/bin":"$(brew --prefix go)/libexec/bin":$PATH
|
|
|
|
# define CDPATHs which are autocompleted from when doing cd
|
|
|
|
export CDPATH=$CDPATH:~/Code
|
|
|
|
|
|
|
|
# nvm
|
2019-08-18 14:05:36 +02:00
|
|
|
# defer loading until needed for faster shell startup
|
|
|
|
declare -a NODE_GLOBALS=(`find ~/.nvm/versions/node -maxdepth 3 -type l -wholename '*/bin/*' | xargs -n1 basename | sort | uniq`)
|
|
|
|
|
|
|
|
NODE_GLOBALS+=("node")
|
|
|
|
NODE_GLOBALS+=("nvm")
|
|
|
|
|
|
|
|
load_nvm () {
|
2019-08-18 02:07:17 +02:00
|
|
|
export NVM_DIR="$HOME/.nvm"
|
2019-08-18 14:05:36 +02:00
|
|
|
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh"
|
|
|
|
}
|
|
|
|
|
|
|
|
for cmd in "${NODE_GLOBALS[@]}"; do
|
|
|
|
eval "${cmd}(){ unset -f ${NODE_GLOBALS}; load_nvm; ${cmd} \$@ }"
|
|
|
|
done
|
|
|
|
# ----
|
|
|
|
# if [ -s "$HOME/.nvm" ]; then
|
|
|
|
# export NVM_DIR="$HOME/.nvm"
|
|
|
|
# [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
|
|
|
|
# fi
|
2019-08-18 02:07:17 +02:00
|
|
|
|
|
|
|
# pip should only run if there is a virtualenv currently activated
|
|
|
|
#export PIP_REQUIRE_VIRTUALENV=true
|
|
|
|
# cache pip-installed packages to avoid re-downloading
|
|
|
|
export PIP_DOWNLOAD_CACHE=$HOME/.pip/cache
|