Im not very familiar with the whole zsh ecosystem and there is some stuff that has confused me.
Im using prezto (I know I dont need a framework) which has mostly all the things I need out of the box but I also want this:
How do I install plugins with prezto? Prezto has its own "modules" and there does not appear to be one for conda autocompletion. How to I install this plugin?
Does prezto not support installing zsh plugins and I have to install it manually?
1 Answer
- Inside Prezto's base dir, create a dir called
contrib. - Inside this
contribdir,git clonetheconda-zsh-completionplugin. - In your
~/.zpreztorcfile, addconda-zsh-completiontozstyle ':prezto:load' pmodule. - Restart your terminal.
To update the plugin, cd into its dir and do git pull.
Documentation on using external plugins with Prezto can be found here:
3