feat(plugin): add pyenv

master
George Rawlinson 2021-08-22 19:14:08 +12:00
parent 75fb0068a0
commit 9cf5287c49
Signed by: grawlinson
GPG Key ID: E0959FEA8B550539
1 changed files with 12 additions and 0 deletions

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