From: Hendrik Jäger Date: Fri, 6 Oct 2017 13:33:50 +0000 (+0200) Subject: Add personal password store X-Git-Url: https://git.netwichtig.de/gitweb/?a=commitdiff_plain;ds=sidebyside;h=16a02594b071a14f11d157f30faa72801e32349e;p=user%2Fhenk%2Fvcsh%2Fzsh.git Add personal password store --- 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 $@ +} + diff --git a/.zshrc b/.zshrc index b0bfd27..f7e8f2d 100644 --- a/.zshrc +++ b/.zshrc @@ -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