forked from lbesnard/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzshrc
22 lines (19 loc) · 799 Bytes
/
zshrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
source /home/lbesnard/.zshrc.zplug
#THIS MUST BE AT THE END OF THE FILE FOR SDKMAN TO WORK!!!
export SDKMAN_DIR="/home/lbesnard/.sdkman"
[[ -s "/home/lbesnard/.sdkman/bin/sdkman-init.sh" ]] && source "/home/lbesnard/.sdkman/bin/sdkman-init.sh"
# >>> conda initialize >>>
# !! Contents within this block are managed by 'conda init' !!
__conda_setup="$('/home/lbesnard/anaconda3/bin/conda' 'shell.zsh' 'hook' 2> /dev/null)"
if [ $? -eq 0 ]; then
eval "$__conda_setup"
else
if [ -f "/home/lbesnard/anaconda3/etc/profile.d/conda.sh" ]; then
. "/home/lbesnard/anaconda3/etc/profile.d/conda.sh"
else
export PATH="/home/lbesnard/anaconda3/bin:$PATH"
fi
fi
unset __conda_setup
export VIRTUALENVWRAPPER_PYTHON=/home/lbesnard/anaconda3/bin/python
# <<< conda initialize <<<