external plugin guard

This commit is contained in:
Wryn Wagner 2021-09-16 20:21:19 -06:00
parent 929a8b9cae
commit 890a17392c

2
zsh/rc
View File

@ -34,7 +34,7 @@ SET_PREFERRED_EDITOR() {
} }
# --------------------------------------------------------------------- # ---------------------------------------------------------------------
for p in $INTERNAL_PLUGINS; do source $p; done for p in $INTERNAL_PLUGINS; do source $p; done
for p in $EXTERNAL_PLUGINS; do source $p; done for p in $EXTERNAL_PLUGINS; do [ -f $p ] && source $p; done
SET_PREFERRED_EDITOR SET_PREFERRED_EDITOR
WELCOME WELCOME
# --------------------------------------------------------------------- # ---------------------------------------------------------------------