From b80271d2997576211a491f5991b63a555649abde Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Wed, 29 Sep 2021 16:29:29 +0200 Subject: [PATCH] Disable completion in Org Mode buffers I do not use the completion provided by company-mode, and sometimes it's even disruptive during writing. So let's disable it for the time being. The original reason to keep it activated has been to have completion when inserting links to local files. This can better be achieved by providing a universal argument to `org-insert-link`. --- init.el | 3 --- 1 file changed, 3 deletions(-) diff --git a/init.el b/init.el index 18384c7..900a50b 100644 --- a/init.el +++ b/init.el @@ -869,9 +869,6 @@ (emacs-lisp . t)))) :config (progn - ;; Allow company completion in Org Mode buffers - (add-hook 'org-mode-hook 'company-mode) - ;; Reset checkboxes if the RESET_CHECK_BOXES property is set (add-hook 'org-after-todo-state-change-hook 'org-reset-checkbox-state-maybe)