doomemacs/modules/tools/password-store/config.el
Benjamin Andresen 9c25865942 tools/password-store: initial commit
pass doesn't play at all with shackle yet
2017-06-11 15:55:30 +02:00

19 lines
466 B
EmacsLisp

;;; tools/password-store/config.el -*- lexical-binding: t; -*-
(def-package! password-store
:config
(setq password-store-password-length 12))
(def-package! pass
:commands (pass)
:bind (:map pass-mode-map
("j" . pass-next-entry)
("k" . pass-prev-entry)
("d" . pass-kill)
("C-j" . pass-next-directory)
("C-k" . pass-next-directory)))
(def-package! auth-password-store
:demand t
:config
(auth-pass-enable))