From aab03a5383817c75a846d904c63d635edd5a6fcd Mon Sep 17 00:00:00 2001 From: Muhammad Nauman Raza Date: Sun, 20 Nov 2022 09:45:00 +0000 Subject: [PATCH] fix: evil-snipe not being enabled --- lisp/editor.el | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lisp/editor.el b/lisp/editor.el index bbcd78c..1a5af91 100644 --- a/lisp/editor.el +++ b/lisp/editor.el @@ -26,19 +26,20 @@ ;; evil-commentary - Comment stuff out (use-package evil-commentary :after evil - :init + :config (evil-commentary-mode)) ;; evil-surround - You will be surrounded (use-package evil-surround :after evil - :init + :config (global-evil-surround-mode)) ;; evil-snipe - 2-char searching for evil-mode (use-package evil-snipe :after evil - :init + :config + (evil-snipe-mode 1) (evil-snipe-override-mode 1)) ;; evil-collection - A collection of keybinds for evil