feat(plugin): add pyenv

This commit is contained in:
George Rawlinson 2021-08-22 19:14:08 +12:00
parent 75fb0068a0
commit 9cf5287c49
Signed by: grawlinson
GPG key ID: E0959FEA8B550539

12
plugins/pyenv Normal file
View file

@ -0,0 +1,12 @@
#
# pyenv
#
# Add pyenv binary directory to PATH
if command -v pyenv &> /dev/null; then
export PYENV_ROOT="$HOME/.cache/pyenv"
PATH="$PYENV_ROOT/shims:$PYENV_ROOT/bin:$PATH"
export PATH
fi
# vim: ft=zsh expandtab tabstop=2 shiftwidth=2