feat(plugin): add pyenv
This commit is contained in:
parent
75fb0068a0
commit
9cf5287c49
1 changed files with 12 additions and 0 deletions
12
plugins/pyenv
Normal file
12
plugins/pyenv
Normal 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
|
Loading…
Reference in a new issue