feat(zsh): add pyenv configuration
This commit is contained in:
parent
6beace6c83
commit
95941987f6
1 changed files with 11 additions and 0 deletions
11
zsh/.config/zsh/source/pyenv.zsh
Normal file
11
zsh/.config/zsh/source/pyenv.zsh
Normal 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
|
Loading…
Reference in a new issue