You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Tim J. K
6f2115febb
|
3 years ago | |
---|---|---|
.. | ||
README.md | 3 years ago | |
_pass | 3 years ago |
README.md
pass
This plugin provides completion for the pass 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:
compdef _pass workpass
zstyle ':completion::complete:workpass::' prefix "$HOME/work/pass"
workpass() {
PASSWORD_STORE_DIR=$HOME/work/pass pass $@
}