As pointed out by asmeurer , there is conda-zsh-complete .
Install it by cloning the repository to your computer
git clone https:
and add the following to your .zshrc
fpath+=/path/to/where/you/installed/conda-zsh-completion compinit conda
Note that if you use oh-my-zsh , the first line should go before the line where you initiate oh-my-zsh , and the second after initialization.
Now you can autocomplete as
conda a<TAB> env-name-parti<TAB>
source share