From 82a7b40f0c82b1bbf975b7966923b731a3c245a0 Mon Sep 17 00:00:00 2001 From: Sergey Matveev Date: Fri, 23 Jul 2021 13:30:42 +0300 Subject: [PATCH] venv must be declared earlier than autoenv hook --- zsh/.zshrc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/zsh/.zshrc b/zsh/.zshrc index 13cdff3..042a44c 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -239,12 +239,12 @@ while read w ; do done < ~/.zhashd # }}} -# autoenv {{{ -. ~/work/zsh-autoenv/autoenv.zsh -# }}} - # Virtualenv {{{ venv() { . /usr/local/bin/virtualenvwrapper.sh } # }}} + +# autoenv {{{ +. ~/work/zsh-autoenv/autoenv.zsh +# }}} -- 2.44.0