diff options
Diffstat (limited to '.config/emacs/modules/bd--essentials.el')
-rw-r--r-- | .config/emacs/modules/bd--essentials.el | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/.config/emacs/modules/bd--essentials.el b/.config/emacs/modules/bd--essentials.el index de72c20..49e50e3 100644 --- a/.config/emacs/modules/bd--essentials.el +++ b/.config/emacs/modules/bd--essentials.el @@ -18,10 +18,18 @@ (pulse-momentary-highlight-one-line (point))) (dolist (command '(scroll-up-command scroll-down-command - recenter-top-bottom other-window)) + recenter-top-bottom other-window)) (advice-add command :after #'pulse-line)) +;;;; insecure passwording +(use-package pinentry + :init + (pinentry-start) + :custom + (pinentry-popup-prompt-window nil)) + + ;;;; defaults ;; basic editing (setopt kill-whole-line t |