feat(vault): re-introduce vault plugin

This commit is contained in:
Florian Rey 2024-10-13 20:34:58 +02:00
parent 7bbebcd520
commit e58e24c4a1
No known key found for this signature in database
2 changed files with 15 additions and 0 deletions

9
plugins/vault/README.md Normal file
View File

@ -0,0 +1,9 @@
# Vault plugin
This plugin adds completion for [Vault](https://www.vaultproject.io/), the secrets and sensitive data manager.
To use it, add `vault` to the plugins array in your zshrc file:
```zsh
plugins=(... vault)
```

View File

@ -0,0 +1,6 @@
# Completion
if (( ! $+commands[vault] )); then
return
fi
complete -o nospace -C vault vault