initial, no firefox yet :(

This commit is contained in:
voidarclabs
2025-07-22 16:18:19 +01:00
commit 221bcbf568
1095 changed files with 112089 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
# pass
This plugin provides completion for the [pass](https://www.passwordstore.org/) password manager.
To use it, add `pass` to the plugins array in your zshrc file.
```
plugins=(... pass)
```
## Configuration
### Multiple repositories
If you use multiple repositories, you can configure completion like this:
```zsh
compdef _pass workpass
zstyle ':completion::complete:workpass::' prefix "$HOME/work/pass"
workpass() {
PASSWORD_STORE_DIR=$HOME/work/pass pass $@
}
```