From 310ee3a7d85b2d748e62eca874aefb03c5c991c9 Mon Sep 17 00:00:00 2001 From: "paul.thomas" Date: Sun, 4 Jul 2021 21:27:34 +0100 Subject: [PATCH] feat: add uplift to available plugins --- plugins/uplift/README.md | 9 +++++++++ plugins/uplift/uplift.plugin.zsh | 3 +++ 2 files changed, 12 insertions(+) create mode 100644 plugins/uplift/README.md create mode 100644 plugins/uplift/uplift.plugin.zsh 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