1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-11-23 06:10:08 +00:00

Add plugin for kompose

This commit is contained in:
Kevin S Kirkup 2019-04-03 08:42:37 -04:00
parent 3a6bf6bd26
commit 766cff650c
2 changed files with 15 additions and 0 deletions

12
plugins/kompose/README.md Normal file
View file

@ -0,0 +1,12 @@
# kompose
This plugin provides completion for [kompose](https://github.com/kubernetes/kompose),
to migrate from docker compose to Kubernetes resource definitions.
To use it, add `kompose` to the plugins array in your zshrc file.
```
plugins=(... kompose)
```
**Author:** [@kevinkirkup](https://github.com/kevinkirkup)

View file

@ -0,0 +1,3 @@
if [ $commands[kompose] ]; then
source <(kompose completion zsh)
fi