tools/password-store: initial commit
pass doesn't play at all with shackle yet
This commit is contained in:
parent
9645945465
commit
9c25865942
2 changed files with 24 additions and 0 deletions
19
modules/tools/password-store/config.el
Normal file
19
modules/tools/password-store/config.el
Normal 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))
|
5
modules/tools/password-store/packages.el
Normal file
5
modules/tools/password-store/packages.el
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
;; -*- no-byte-compile: t; -*-
|
||||||
|
;;; tools/password-store/packages.el
|
||||||
|
|
||||||
|
(package! password-store)
|
||||||
|
(package! pass)
|
Loading…
Add table
Add a link
Reference in a new issue