Skip to content

Instantly share code, notes, and snippets.

@jettro
Last active September 25, 2020 00:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jettro/6bb079b515ede507500f5e7543338e1f to your computer and use it in GitHub Desktop.
Save jettro/6bb079b515ede507500f5e7543338e1f to your computer and use it in GitHub Desktop.
custom plugins for oh-my-zsh
# >>> conda init >>>
# !! Contents within this block are managed by 'conda init' !!
__conda_setup="$(CONDA_REPORT_ERRORS=false '/Users/jettrocoenradie/Development/anaconda/anaconda3/bin/conda' shell.bash hook 2> /dev/null)"
if [ $? -eq 0 ]; then
eval "$__conda_setup"
else
if [ -f "/Users/jettrocoenradie/Development/anaconda/anaconda3/etc/profile.d/conda.sh" ]; then
. "/Users/jettrocoenradie/Development/anaconda/anaconda3/etc/profile.d/conda.sh"
CONDA_CHANGEPS1=false conda activate base
else
export PATH="/Users/jettrocoenradie/Development/anaconda/anaconda3/bin:$PATH"
fi
fi
unset __conda_setup
# <<< conda init <<<
export PATH="/Users/jettrocoenradie/Development/anaconda/anaconda3/bin:$PATH"
# Provide a function to switch between java installations
function setjdk() {
if [ $# -ne 0 ]; then
removeFromPath '/System/Library/Frameworks/JavaVM.framework/Home/bin'
if [ -n "${JAVA_HOME+x}" ]; then
removeFromPath $JAVA_HOME
fi
export JAVA_HOME=`/usr/libexec/java_home -v $@`
export PATH=$JAVA_HOME/bin:$PATH
fi
}
function removeFromPath() {
export PATH=$(echo $PATH | sed -E -e "s;:$1;;" -e "s;$1:?;;")
}
# set the default java sdk
setjdk 11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment