Fixed issue with compdef loading in the wrong order

This commit is contained in:
Wryn Wagner 2021-02-23 13:37:37 -07:00
parent fcd5b68435
commit 89857dcaae

3
zsh/rc
View File

@ -3,10 +3,11 @@
source "$HOME/.wryn/env/env.zsh"
RC_DIR="$DOTWRYN/zsh"
source "$DOTWRYN/zsh/config"
# --- load custom plugins ------------------------------------------
for file in $(find $RC_DIR -maxdepth 1 -type f ! -name 'rc'); do source $file; done;
for file in $(find $RC_DIR -maxdepth 1 -type f ! -name 'rc' ! -name 'config'); do source $file; done;
# operating system specific plugins
case "$OSTYPE" in