added pyenv init stuff to .zshrc.

This commit is contained in:
Gabe Venberg 2023-11-17 09:57:36 -06:00
parent 4970f43b27
commit f41776ca03

View file

@ -183,3 +183,8 @@
#if it was installed using git, can just source the one file: #if it was installed using git, can just source the one file:
testPath="$HOME/.fzf.zsh" testPath="$HOME/.fzf.zsh"
[ -f "$testPath" ] && source $testPath [ -f "$testPath" ] && source $testPath
#pyenv
export PYENV_ROOT="$HOME/.pyenv"
[[ -d $PYENV_ROOT/bin ]] && export PATH="$PYENV_ROOT/bin:$PATH"
eval "$(pyenv init -)"