Commit 201fb6da by Stelios Tymvios Committed by Sébastien Eustace

Added instructions for Oh-My-Zsh completion (#430)

parent 05b6ee7f
......@@ -148,6 +148,11 @@ poetry completions fish > ~/.config/fish/completions/poetry.fish
# Zsh
poetry completions zsh > ~/.zfunc/_poetry
# Oh-My-Zsh
mkdir $ZSH/plugins/poetry
poetry completions zsh > $ZSH/plugins/poetry/_poetry
```
!!! note
......@@ -159,3 +164,12 @@ For `zsh`, you must then add the following line in your `~/.zshrc` before `compi
```bash
fpath+=~/.zfunc
```
For `oh-my-zsh`, you must then enable poetry in your `~/.zshrc` plugins
```
plugins(
poetry
...
)
```
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment