From a62114c91f2070c8c8453d117f3d81dc113e41ff Mon Sep 17 00:00:00 2001 From: Biswakalyan Bhuyan Date: Mon, 25 Mar 2024 16:43:09 +0530 Subject: dotfile update --- zsh/oh-my-zsh/plugins/pass/README.md | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 zsh/oh-my-zsh/plugins/pass/README.md (limited to 'zsh/oh-my-zsh/plugins/pass/README.md') diff --git a/zsh/oh-my-zsh/plugins/pass/README.md b/zsh/oh-my-zsh/plugins/pass/README.md deleted file mode 100644 index 2b07049..0000000 --- a/zsh/oh-my-zsh/plugins/pass/README.md +++ /dev/null @@ -1,22 +0,0 @@ -# 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 $@ -} -``` -- cgit v1.2.3-59-g8ed1b