]> git.phdru.name Git - dotfiles.git/commitdiff
.shellrc: minor refactoring
authorOleg Broytman <phd@phdru.name>
Wed, 12 Oct 2016 03:26:27 +0000 (06:26 +0300)
committerOleg Broytman <phd@phdru.name>
Wed, 12 Oct 2016 03:26:27 +0000 (06:26 +0300)
Move pyenv init and virtualenvwrapper under $BASH_VERSION test.

.shellrc

index 728714d308d5bb7607f6318ed9465cdd74826d34..130281854e9d4421e36b12bb425c05ae769e547e 100644 (file)
--- a/.shellrc
+++ b/.shellrc
@@ -154,6 +154,13 @@ if test -n "$BASH_VERSION"; then
    #   rm -rf /tmp/pip_build_"$USER"
    #fi
 
+   #if which pyenv >/dev/null 2>&1; then
+   #   eval "`pyenv init -`"
+   #   eval "`pyenv virtualenv-init -`"
+   #fi
+
+   source virtualenvwrapper_lazy.sh 2>/dev/null
+
 elif test -n "$KSH_VERSION" -o -n "$FCEDIT"; then
    back() { cd - "$@"; }
    j() { jobs; }
@@ -344,13 +351,6 @@ if which tmux >/dev/null 2>&1; then
 fi
 
 
-#if which pyenv >/dev/null 2>&1; then
-#   eval "`pyenv init -`"
-#   eval "`pyenv virtualenv-init -`"
-#fi
-
-source virtualenvwrapper_lazy.sh 2>/dev/null
-
 if [ "$SHLVL" -eq 1 ] && which startx >/dev/null 2>&1; then
    X() { startx >> .Xserver.log 2>&1; cyr; }
 fi