From 5ee50c6b5a8d1fb9172b5004469d2a39aaaf77c0 Mon Sep 17 00:00:00 2001 From: staticsafe Date: Tue, 8 Nov 2016 16:52:01 +0000 Subject: [PATCH] add Pyenv stuff to Zsh exports --- .zsh/exports.zsh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.zsh/exports.zsh b/.zsh/exports.zsh index f3610f8..5df8609 100644 --- a/.zsh/exports.zsh +++ b/.zsh/exports.zsh @@ -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"