sglang.0.4.8.post1/oh-my-zsh/plugins/pass
hailin d4330e0746 first commit @ sglang v0.4.8.post1 2025-06-29 14:14:11 +00:00
..
README.md first commit @ sglang v0.4.8.post1 2025-06-29 14:14:11 +00:00
_pass first commit @ sglang v0.4.8.post1 2025-06-29 14:14:11 +00:00

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