From 6c52fb5c700e3906fe7d80446e5a7c796a674d45 Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Fri, 12 Sep 2025 16:47:20 +0200 Subject: [PATCH] Do not let lispy enable semantic-mode on its own The key binding for `semantic-mode` collides with that of `org-priority` in Org mode. --- init.el | 1 + 1 file changed, 1 insertion(+) diff --git a/init.el b/init.el index 2d4785b..590a2f5 100644 --- a/init.el +++ b/init.el @@ -2866,6 +2866,7 @@ Note that this workaround is incomplete, as explained in this comment." :ensure t :commands (lispy-mode) :diminish lispy-mode + :init (setopt lispy-no-permanent-semantic t) :config (with-eval-after-load 'lispy-tags (require 'semantic)))