add Pyenv stuff to Zsh exports

This commit is contained in:
staticsafe 2016-11-08 16:52:01 +00:00
parent ab05f4a2d3
commit 5ee50c6b5a
1 changed files with 3 additions and 1 deletions

View File

@ -17,4 +17,6 @@ export TERM=screen-256color
if [[ -r /proc/cpuinfo ]]; then
export MAKEOPTS=-j$(($(grep -c '^processor' /proc/cpuinfo) + 1))
fi
# Pyenv stuff
export PYENV_ROOT="$HOME/.pyenv"
export PATH="$PYENV_ROOT/bin:$PATH"