Do our own zcompile step for zshenv in particular, since it runs before the Zinit module has a chance to load

This commit is contained in:
Danielle McLean 2020-01-20 12:54:38 +11:00
parent 25f3c517d8
commit 60606d5459
Signed by: 00dani
GPG key ID: FF6F9216852288FF

View file

@ -1,2 +1,5 @@
setopt extended_glob
for f in $ZDOTDIR/all/^*.zwc(N); source $f
for f in $ZDOTDIR/all/^*.zwc(N); do
[[ ! -f $f.zwc ]] && zcompile $f
source $f
done