projects
/
dotfiles.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
45f3553
)
venv must be declared earlier than autoenv hook
author
Sergey Matveev <stargrave@stargrave.org>
Fri, 23 Jul 2021 10:30:42 +0000 (13:30 +0300)
committer
Sergey Matveev <stargrave@stargrave.org>
Fri, 23 Jul 2021 10:30:42 +0000 (13:30 +0300)
zsh/.zshrc
patch
|
blob
|
history
diff --git
a/zsh/.zshrc
b/zsh/.zshrc
index 13cdff3101b3873b36674824b1c0f3e4bea09450..042a44c104e01b8dd67891dd2f6f6932042c15b7 100644
(file)
--- 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
+# }}}