1
0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2026-04-03 20:24:09 +08:00
This commit is contained in:
Paul T 2026-03-19 02:43:12 -04:00 committed by GitHub
commit 08d58bbc24
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 12 additions and 0 deletions

9
plugins/uplift/README.md Normal file
View 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)
```

View File

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