mirror of https://github.com/docker/docs.git
Merge pull request #7404 from sasidhar/patch-1
Added setup instructions for oh-my-zsh
This commit is contained in:
commit
776e10040d
|
@ -52,6 +52,18 @@ completion.
|
|||
|
||||
### Zsh
|
||||
|
||||
#### With oh-my-zsh
|
||||
|
||||
Add `docker` to the plugins list in `~/.zshrc`:
|
||||
|
||||
```shell
|
||||
plugins=(
|
||||
<existing-plugins> docker
|
||||
)
|
||||
```
|
||||
|
||||
#### Without oh-my-zsh
|
||||
|
||||
Place the completion script in your `/path/to/zsh/completion` (typically `~/.zsh/completion/`):
|
||||
|
||||
```shell
|
||||
|
|
Loading…
Reference in New Issue