From 5131e44e7c44da2017a5438c78958da8a921b0aa Mon Sep 17 00:00:00 2001 From: Veltin Dupont Date: Thu, 24 Oct 2019 14:46:24 +0200 Subject: [PATCH] Ensure plugin is correctly loaded by oh-my-zsh As we can see [here](https://github.com/robbyrussell/oh-my-zsh/blob/40df67bc3b9b51caa24df5d220487043040d1f9a/oh-my-zsh.sh#L86), the directory name of the plugin must match the plugin name for oh-my-zsh to correctly load the plugin. This PR updates the doc in `_conda` to reflect this. --- _conda | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_conda b/_conda index 12a6fb0..33c022a 100644 --- a/_conda +++ b/_conda @@ -25,7 +25,7 @@ # just add it to your $fpath before calling the OMZ or Prezto initialization # functions. For example: # -# git clone https://github.com/esc/conda-zsh-completion ${ZSH_CUSTOM:=~/.oh-my-zsh/custom}/plugins/zsh-completions +# git clone https://github.com/esc/conda-zsh-completion ${ZSH_CUSTOM:=~/.oh-my-zsh/custom}/plugins/conda-zsh-completion # # And add lines in `.zshrc` # plugins=(… conda-zsh-completion)