dotfiles/zsh/.oh-my-zsh/plugins/pass
2021-01-19 21:01:53 +01:00
..
_pass Initial dot-file commit after setting up repo and playing with stow 2021-01-19 21:01:53 +01:00
README.md Initial dot-file commit after setting up repo and playing with stow 2021-01-19 21:01:53 +01:00

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 $@
}