From cad264db25c52c8ac6f9349f82f35d4949bfce18 Mon Sep 17 00:00:00 2001 From: Sami Samhuri Date: Fri, 14 Nov 2014 14:12:31 -0800 Subject: [PATCH] add pyenv to zshrc --- zsh/zshrc | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/zsh/zshrc b/zsh/zshrc index 0cc8dff..e40aaae 100755 --- a/zsh/zshrc +++ b/zsh/zshrc @@ -276,11 +276,14 @@ if is_interactive && command_exists keychain && [[ -d ~/.ssh ]]; then fi fi -# 12. rbenv -# ========= +# 12. rbenv and pyenv +# =================== if command_exists rbenv; then eval "$(rbenv init -)" fi +if command_exists pyenv; then + eval "$(pyenv init -)" +fi # 13. travis # ==========