Imrpove zsh startup performance

This commit is contained in:
2026-04-22 05:21:23 +02:00
parent 3f586c4d0d
commit 273f74a67a
6 changed files with 76 additions and 6 deletions
+17
View File
@@ -0,0 +1,17 @@
if (( ! $+commands[mise] )); then
return
fi
# Load mise hooks
zsh-defer -a _evalcache mise activate zsh
# If the completion file doesn't exist yet, we need to autoload it and
# bind it to `mise`. Otherwise, compinit will have already done that.
if [[ ! -f "$ZSH_CACHE_DIR/completions/_mise" ]]; then
typeset -g -A _comps
autoload -Uz _mise
_comps[mise]=_mise
fi
# Generate and load mise completion
mise completion zsh >| "$ZSH_CACHE_DIR/completions/_mise" &|