diff --git a/README.rst b/README.rst index 1a0cad8..7dd6f58 100644 --- a/README.rst +++ b/README.rst @@ -1,6 +1,26 @@ conda-zsh-completion -------------------- +Installation +------------ +`oh-my-zsh `_ +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +.. code-block:: bash + + git clone https://github.com/esc/conda-zsh-completion ${ZSH_CUSTOM:=~/.oh-my-zsh/custom}/plugins/zsh-completions + + +add lines in `.zshrc` + +.. code-block:: zsh + + 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}"