dotfiles-emacs/.emacs.d/config/pass.el
finga 91ff02afe1 config: Fix indention by emacs auto indent
Use the indention that emacs applies when auto indenting.
2024-05-27 13:47:27 +02:00

8 lines
229 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))
;; configure ivy-pass key binding
(global-set-key [?\C-x ?p] 'ivy-pass)