Add a completion plugin for minishift

This commit is contained in:
Pavel Macík 2019-06-03 13:23:52 +02:00
parent 27228d83fe
commit 2f82418080
No known key found for this signature in database
GPG Key ID: 31A213DE4FA174A3
2 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,9 @@
# minishift
This plugin provides completion for [minishift](https://github.com/minishift/minishift/).
To use it, add `minishift` to the plugins array in your .zshrc file.
```
plugins=(... minishift)
```

View File

@ -0,0 +1,5 @@
# Autocompletion plugin for minishift.
if [ $commands[minishift] ]; then
source <(minishift completion zsh)
fi