mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-03 12:27:26 -05:00
tools/password-store: initial commit
pass doesn't play at all with shackle yet
This commit is contained in:
committed by
Henrik Lissner
parent
9645945465
commit
9c25865942
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)
|
Reference in New Issue
Block a user