X-Git-Url: https://git.madduck.net/etc/zsh.git/blobdiff_plain/9a1960b5edade792e0d4d9a8c8e0630e774affc5..dd0ae6042dcd690fa561f6e5a610b60ab10f85d5:/.zsh/zshrc/00_autoload diff --git a/.zsh/zshrc/00_autoload b/.zsh/zshrc/00_autoload index 6098311..a364130 100644 --- a/.zsh/zshrc/00_autoload +++ b/.zsh/zshrc/00_autoload @@ -8,8 +8,22 @@ # Source repository: http://git.madduck.net/v/etc/zsh.git # -# for p ($fpath) for fn ($p/**) autoload ${fn##*/} -autoload $^fpath/*(.xN:t) -autoload zargs +# autoload all executable files in $fpath +autoload -U $^fpath/*(.xN:t) + +# smart xargs replacement +autoload -U zargs + +# programmable moving, copying, and linking +autoload -U zmv + +# make color arrays available +autoload -U colors ; colors + +# use shell builtins for standard file operations +zmodload zsh/files + +# allow zwc file recompiling +autoload -U zrecompile # vim:ft=zsh