From: Sergey Matveev Date: Fri, 23 Jul 2021 10:30:42 +0000 (+0300) Subject: venv must be declared earlier than autoenv hook X-Git-Url: http://www.git.stargrave.org/?p=dotfiles.git;a=commitdiff_plain;h=82a7b40f0c82b1bbf975b7966923b731a3c245a0 venv must be declared earlier than autoenv hook --- 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 +# }}}