Closed toooonyy closed 1 month ago
Great questions. Let's see if I can answer them:
Great questions. Let's see if I can answer them:
- Yes, the order of plugins in .zsh_plugins.txt definitely matters. If you are using kind:defer, those all happen at the end. You can pretty easily see what antidote is doing by simply looking in the .zsh_plugins.zsh cache file.
- ez-compinit and zephyr/completion are mostly the same plugin - one's just stand-alone because it was easier to point people to than Zephyr's completion subplugin, since not all plugin managers support nested plugins. No need for both.
- If you are using alozaf/fzf-tab, you probably don't need all the completion styles from compstyle, but it doesn't hurt. I don't use marlonrichert/zsh-autocomplete, but I can't see how the compstyles would conflict, nor has anyone opened a bug report to that effect. But let's be sure we're clear - the compstyle plugin is simply setting zstyles, and is different than the completion plugin. I think I've seen where zsh-autocomplete tries to handle compinit for you, so you may want to read the docs/examine the plugin to be sure.
- Marlon has another plugin that supposedly does this, but I haven't used it either: https://unix.stackexchange.com/a/629701
Thx for the quick reply, I've adjust my .zsh_plugins.txt
now it's like this
zsh-users/zsh-history-substring-search
zsh-users/zsh-syntax-highlighting kind:defer
Aloxaf/fzf-tab
# marlonrichert/zsh-autocomplete
zsh-users/zsh-autosuggestions
mattmc3/zephyr path:plugins/homebrew
# mattmc3/zephyr path:plugins/compstyle
mattmc3/zephyr path:plugins/completion
mattmc3/zephyr path:plugins/macos
romkatv/powerlevel10k
For question 4 I found this nice answer https://superuser.com/questions/902241/how-to-make-zsh-not-store-failed-command, which is better IMO as the other solution immediately deletes your typo commands so you can't even find and correct it using up arrow.
Hi mattmc3, recently I decided to switch OMZ to a faster zsh plugin manager and I founded antidote thanks for the great work! However I'm not sure if I'm missing use
antidoe
, or adding too many overleaping plugins with zephyr, could you help me figure this out? My current.zshrc
and.zsh_plugins.txt
file looks like this.zshrc
.zsh_plugins.txt
My quesions are
.zsh_plugins.txt
affect the order of loading they?mattmc3/ez-compinit
still necessary if I use yourzephyr/completion
?zephyr/compstyle
conflict withmarlonrichert/zsh-autocomplete
orAloxaf/fzf-tab
?