feat(org): unbind some default keybindings in org-mode

This commit is contained in:
2026-05-06 15:37:54 -03:00
parent 2dc93765b4
commit 5df4169bfd

View File

@@ -85,6 +85,9 @@
;; org-mode ;; org-mode
(use-package org (use-package org
:ensure nil :ensure nil
:bind (:map org-mode-map
("C-'" . nil)
("C-," . nil))
:hook :hook
((org-mode . kj/org-hook) ((org-mode . kj/org-hook)
(org-mode . visual-line-fill-column-mode)) (org-mode . visual-line-fill-column-mode))