add pyenv to zshrc

This commit is contained in:
Sami Samhuri 2014-11-14 14:12:31 -08:00
parent 53ae7db88f
commit cad264db25

View file

@ -276,11 +276,14 @@ if is_interactive && command_exists keychain && [[ -d ~/.ssh ]]; then
fi fi
fi fi
# 12. rbenv # 12. rbenv and pyenv
# ========= # ===================
if command_exists rbenv; then if command_exists rbenv; then
eval "$(rbenv init -)" eval "$(rbenv init -)"
fi fi
if command_exists pyenv; then
eval "$(pyenv init -)"
fi
# 13. travis # 13. travis
# ========== # ==========