From 71087607184b5d869866f821430c5a17fc6c86fa Mon Sep 17 00:00:00 2001 From: Zelong Kuang Date: Sat, 6 Dec 2025 14:47:52 +1100 Subject: [PATCH] ``` refactor(editor): Switch from Meow to Evil keybindings Replace Meow editor with Evil mode configured with +everywhere flag for consistent Vi-style keybindings across Emacs. ``` --- config.el | 2 ++ config.org | 4 ++++ 2 files changed, 6 insertions(+) diff --git a/config.el b/config.el index ad9c9d6..664e01e 100644 --- a/config.el +++ b/config.el @@ -4,6 +4,8 @@ ;; ;; To disable collection of benchmark data after init is done. ;; (add-hook 'after-init-hook 'benchmark-init/deactivate)) +(setq evil-disable-insert-state-bindings t) + (pcase system-type ('darwin ; macOS (setq doom-font (font-spec :family "Maple Mono" :size 20)) diff --git a/config.org b/config.org index 50060a7..d2bdbf7 100644 --- a/config.org +++ b/config.org @@ -10,6 +10,10 @@ ;; (add-hook 'after-init-hook 'benchmark-init/deactivate)) #+end_src * My doom config +** Evil +#+begin_src emacs-lisp +(setq evil-disable-insert-state-bindings t) +#+end_src ** Appearance settings #+begin_src emacs-lisp