diff --git a/plugins/uplift/README.md b/plugins/uplift/README.md new file mode 100644 index 000000000..be6ad8485 --- /dev/null +++ b/plugins/uplift/README.md @@ -0,0 +1,9 @@ +# Uplift plugin + +This plugin adds completion for [Uplift](https://github.com/gembaadvantage/uplift). Semantic versioning the easy way. + +To use it, add `uplift` to the plugins array in your .zshrc file: + +```zsh +plugins=(... uplift) +``` diff --git a/plugins/uplift/uplift.plugin.zsh b/plugins/uplift/uplift.plugin.zsh new file mode 100644 index 000000000..0cbe16032 --- /dev/null +++ b/plugins/uplift/uplift.plugin.zsh @@ -0,0 +1,3 @@ +if [ $commands[uplift] ]; then + source <(uplift completion zsh) +fi \ No newline at end of file