diff --git a/zsh/.config/zsh/source/pyenv.zsh b/zsh/.config/zsh/source/pyenv.zsh new file mode 100644 index 0000000..4d599a6 --- /dev/null +++ b/zsh/.config/zsh/source/pyenv.zsh @@ -0,0 +1,11 @@ +# +# pyenv +# + +# Reference: https://github.com/pyenv/pyenv#advanced-configuration +if command -v pyenv &> /dev/null; then + export PYENV_ROOT="$HOME/.config/pyenv" + export PATH="$PYENV_ROOT/shims:$PATH" +fi + +# vim: ft=zsh expandtab tabstop=2 shiftwidth=2