dev: automated commit - 2025-10-22 10:22:22

This commit is contained in:
Mariano Z. 2025-10-22 10:22:22 -03:00
parent aa0e46a87d
commit c705bcd86d
14 changed files with 1088 additions and 1070 deletions

View file

@ -82,6 +82,16 @@ source "$ZDOTDIR/rose-pine.sh"
# Defer loading
zsh-defer source "$PLUGIN_DIR/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh"
for config in tmux.zsh functions.zsh alias.zsh keymap.zsh path.zsh pnpm.zsh mise.zsh; do
# Load function files
for func_file in "$ZDOTDIR/functions"/*.zsh; do
zsh-defer source "$func_file"
done
# Load external completions
zsh-defer source "$ZDOTDIR/completions/external.zsh"
# Load other config files
for config in tmux.zsh alias.zsh keymap.zsh path.zsh pnpm.zsh mise.zsh; do
zsh-defer source "$ZDOTDIR/$config"
done