diff options
author | Hendrik Jäger <hendrik@securosys.ch> | 2017-10-06 15:33:50 +0200 |
---|---|---|
committer | Hendrik Jäger <hendrik@securosys.ch> | 2018-03-06 15:02:57 +0100 |
commit | 16a02594b071a14f11d157f30faa72801e32349e (patch) | |
tree | 561106b37ee7af8a959fab26e475cf50883f4a33 | |
parent | b69dba2f6584554ea09b8a48033b3c683ff703df (diff) |
Add personal password store
-rw-r--r-- | .zsh_pass | 7 | ||||
-rw-r--r-- | .zshrc | 1 |
2 files changed, 8 insertions, 0 deletions
diff --git a/.zsh_pass b/.zsh_pass new file mode 100644 index 0000000..5825daf --- /dev/null +++ b/.zsh_pass @@ -0,0 +1,7 @@ +compdef _pass mypass + +zstyle ':completion::complete:mypass::' prefix "$HOME/Data/henksfiles/password-store" +mypass() { + PASSWORD_STORE_DIR=$HOME/Data/henksfiles/password-store pass $@ +} + @@ -11,6 +11,7 @@ autoload -U edit-command-line . ~/.zsh_aliases . ~/.zsh_local . ~/.zsh_qemu +. ~/.zsh_pass zle -N zle-line-init zle -N zle-keymap-select |