diff --git a/README.rst b/README.rst index 1a0cad8..3f0cc45 100644 --- a/README.rst +++ b/README.rst @@ -1,6 +1,22 @@ conda-zsh-completion -------------------- +Installation +------------ +`oh-my-zsh ` +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +```bash +git clone https://github.com/esc/conda-zsh-completion ${ZSH_CUSTOM:=~/.oh-my-zsh/custom}/plugins/zsh-completions +``` + +add lines in `.zshrc` +``` +plugins=(… conda-zsh-completion) +autoload -U compinit && compinit +``` + +Manual +~~~~~~ Please see the top of the ``_conda`` file for more info. :License: |license| diff --git a/conda-zsh-completion.plugin.zsh b/conda-zsh-completion.plugin.zsh new file mode 100644 index 0000000..29faded --- /dev/null +++ b/conda-zsh-completion.plugin.zsh @@ -0,0 +1 @@ +fpath+="${0:h}"