feat(zsh): add pyenv configuration

This commit is contained in:
George Rawlinson 2022-06-14 17:13:55 +12:00
parent 6beace6c83
commit 95941987f6
Signed by: grawlinson
GPG Key ID: E0959FEA8B550539
1 changed files with 11 additions and 0 deletions

View File

@ -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