ZSH: Beginning of reconfiguring everything
This commit is contained in:
11
.config/zsh/conf.d/20-autoload.zsh
Executable file
11
.config/zsh/conf.d/20-autoload.zsh
Executable file
@@ -0,0 +1,11 @@
|
||||
# Autoload additional functions
|
||||
|
||||
if [[ -d "${ZAUTOLOADDIR}" ]]; then
|
||||
|
||||
fpath=($fpath ${ZAUTOLOADDIR})
|
||||
|
||||
# Load functions
|
||||
for func in ${ZAUTOLOADDIR}/*; do
|
||||
autoload -Uz ${func:t}
|
||||
done
|
||||
fi
|
||||
Reference in New Issue
Block a user