From ba2d6bd3a72d864a58c252cf8e67d0e88f55346e Mon Sep 17 00:00:00 2001 From: finga Date: Tue, 28 May 2024 11:11:54 +0200 Subject: [PATCH] pass: Merge config of pass into the use-package block Merge the configuration of pass into the use-package block. --- .emacs.d/config/pass.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.emacs.d/config/pass.el b/.emacs.d/config/pass.el index ebbc24f..5c0c867 100644 --- a/.emacs.d/config/pass.el +++ b/.emacs.d/config/pass.el @@ -2,7 +2,7 @@ :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) + (setq password-store-password-length 32) + :config + ;; configure ivy-pass key binding + (global-set-key [?\C-x ?p] 'ivy-pass))