spongeboBoy
211 天前
```
export PASSWORD_STORE_ENABLE_EXTENSIONS=true
FPATH=$(brew --prefix)/share/zsh-completions:$(brew --prefix)/share/zsh/site-functions:$FPATH
autoload -Uz compinit
compinit -u
# It seems that countless recommendations on the web to run:
# autoload -Uz compinit && compinit
# Have resulted in everyone's zsh autocomplete initialization running that. I have no idea
# what it does, however experimentation has shown that running "compinit" clobbers any
# completions you already had configured. Which totally sucks if you configure auto completion
# for multiple tools in your zshrc
alias compinit="echo no more compinit!"