]> src.twobees.de Git - dotfiles.git/blobdiff - stow/oh-my-zsh/.oh-my-zsh/plugins/pass/README.md
rm oh-my-zsh
[dotfiles.git] / stow / oh-my-zsh / .oh-my-zsh / plugins / pass / README.md
diff --git a/stow/oh-my-zsh/.oh-my-zsh/plugins/pass/README.md b/stow/oh-my-zsh/.oh-my-zsh/plugins/pass/README.md
deleted file mode 100644 (file)
index 2b07049..0000000
+++ /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 $@
-}
-```