From 8e3057982326b0433b0d61e23fe3c3b52398604a Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Mon, 13 Sep 2021 17:24:35 +0200 Subject: [PATCH] tweak(evil): reduce keybind conflicts between outline & org This doesn't fix a particular issue, but makes designing keybinds for org-mode more predictable and less vulnerable to unpredictable changes imposed by evil-collection. --- modules/editor/evil/init.el | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/editor/evil/init.el b/modules/editor/evil/init.el index ad989d1dc..4cc57758f 100644 --- a/modules/editor/evil/init.el +++ b/modules/editor/evil/init.el @@ -58,6 +58,9 @@ variable for an explanation of the defaults (in comments). See (defvar evil-collection-want-unimpaired-p nil) ;; Doom binds goto-reference on gD and goto-assignments on gA ourselves (defvar evil-collection-want-find-usages-bindings-p nil) + ;; Reduces keybind conflicts between outline-mode and org-mode (which is + ;; derived from outline-mode). + (defvar evil-collection-outline-enable-in-minor-mode-p nil) ;; We handle loading evil-collection ourselves (defvar evil-collection--supported-modes nil)