[zsh] Get the output redirection right for autoloads

This commit is contained in:
Eryn Wells 2022-05-20 15:12:14 +00:00
parent 1eb0f7ab8e
commit 0226d26f94
2 changed files with 5 additions and 4 deletions

7
zshrc
View file

@ -19,11 +19,12 @@ init_zsh_options
init_zsh_history
init_app_environments
autoload +X init_rc_$SYS
init_rc_$SYS
if autoload +X init_rc_$SYS &>-; then
init_rc_$SYS
fi
# Configure ls with the system ls if it hasn't been done already.
if ! alias ls 2>&1 1>/dev/null; then
if ! alias ls &>-; then
init_configure_ls `which ls`
fi