tools/password-store: initial commit

pass doesn't play at all with shackle yet
This commit is contained in:
Benjamin Andresen 2017-06-11 02:26:51 +02:00 committed by Henrik Lissner
parent 9645945465
commit 9c25865942
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,19 @@
;;; 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))

View File

@ -0,0 +1,5 @@
;; -*- no-byte-compile: t; -*-
;;; tools/password-store/packages.el
(package! password-store)
(package! pass)