mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-19 21:41:07 +01:00
feat: add uplift to available plugins
This commit is contained in:
parent
e32d4b1e19
commit
310ee3a7d8
2 changed files with 12 additions and 0 deletions
9
plugins/uplift/README.md
Normal file
9
plugins/uplift/README.md
Normal file
|
@ -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)
|
||||
```
|
3
plugins/uplift/uplift.plugin.zsh
Normal file
3
plugins/uplift/uplift.plugin.zsh
Normal file
|
@ -0,0 +1,3 @@
|
|||
if [ $commands[uplift] ]; then
|
||||
source <(uplift completion zsh)
|
||||
fi
|
Loading…
Reference in a new issue