Fixed issue with compdef loading in the wrong order
This commit is contained in:
parent
fcd5b68435
commit
89857dcaae
3
zsh/rc
3
zsh/rc
@ -3,10 +3,11 @@
|
|||||||
source "$HOME/.wryn/env/env.zsh"
|
source "$HOME/.wryn/env/env.zsh"
|
||||||
|
|
||||||
RC_DIR="$DOTWRYN/zsh"
|
RC_DIR="$DOTWRYN/zsh"
|
||||||
|
source "$DOTWRYN/zsh/config"
|
||||||
|
|
||||||
# --- load custom plugins ------------------------------------------
|
# --- 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
|
# operating system specific plugins
|
||||||
case "$OSTYPE" in
|
case "$OSTYPE" in
|
||||||
|
Loading…
Reference in New Issue
Block a user