1
0
mirror of https://github.com/robbyrussell/oh-my-zsh.git synced 2025-12-06 07:20:40 +01:00

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
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