dotfiles-emacs/.emacs.d/config/pass.el
finga ba2d6bd3a7 pass: Merge config of pass into the use-package block
Merge the configuration of pass into the use-package block.
2024-05-28 11:11:54 +02:00

8 lines
242 B
EmacsLisp

(use-package ivy-pass
:ensure t
:init
;; from https://github.com/ecraven/ivy-pass/blob/master/ivy-pass.el
(setq password-store-password-length 32)
:config
;; configure ivy-pass key binding
(global-set-key [?\C-x ?p] 'ivy-pass))