From 3a773626c34af37650f9d016fc1467c1ae04f877 Mon Sep 17 00:00:00 2001 From: finga Date: Wed, 4 Sep 2024 11:36:19 +0200 Subject: [PATCH] ivy-pass: Use use-package's bind section instead of config --- .emacs.d/config/pass.el | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.emacs.d/config/pass.el b/.emacs.d/config/pass.el index 5c0c867..6b9aee5 100644 --- a/.emacs.d/config/pass.el +++ b/.emacs.d/config/pass.el @@ -1,8 +1,6 @@ (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)) + :bind + ("C-x p" . ivy-pass))