From 2622b048b6d566dc280419b622f28c7496ed03ae Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Sat, 14 Nov 2020 11:39:31 +0100 Subject: [PATCH] Do not enable company completion in Org Mode buffers by default It's rather annoying, from my point of view. The original use case was to complete file names in links, and this can be done by calling `company-complete' explicitly. --- init.el | 3 --- 1 file changed, 3 deletions(-) diff --git a/init.el b/init.el index f1f075b..b79fa2f 100644 --- a/init.el +++ b/init.el @@ -837,9 +837,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)