-
I have included zsh-users/zsh-completions in my |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Antidote is a plugin manager, not a complete Zsh framework. If you have used Oh-My-Zsh or Prezto in the past, you might be used to a ton of out-of-the-box features like TAB completions. zsh-users/zsh-completions may seem like it does the job, but it still requires you to run If you want to manually enable Zsh completions, add the following snippet to your .zshrc after you’ve loaded your plugins. # .zshrc
autoload -Uz compinit && compinit Or, you can also use a completion plugin. Some good ones are belak/zsh-utils and mattmc3/zephyr. # .zsh_plugins.txt
# add more completions with plugins
zsh-users/zsh-completions
# now, use a plugin that runs compinit for you to initialize your completions
mattmc3/zephyr path:completion |
Beta Was this translation helpful? Give feedback.
-
According to your docs, I need to call |
Beta Was this translation helpful? Give feedback.
Antidote is a plugin manager, not a complete Zsh framework. If you have used Oh-My-Zsh or Prezto in the past, you might be used to a ton of out-of-the-box features like TAB completions. zsh-users/zsh-completions may seem like it does the job, but it still requires you to run
compinit
. To get completions working properly with an antidote-based Zsh config, you’ll need to runcompinit
yourself once you've finished building yourfpath
with the location of your_completions
files, or simply use a completions plugin. The good news it that’s easy to do!If you want to manually enable Zsh completions, add the following snippet to your .zshrc after you’ve loaded your plugins.
# .zshrc autoload -Uz…