Experimentally enable company completion in Org Mode buffers

This commit is contained in:
Daniel - 2020-09-26 11:12:11 +02:00
parent f3df40bf40
commit c11aeb6666
No known key found for this signature in database
GPG Key ID: 1C7071A75BB72D64
1 changed files with 4 additions and 0 deletions

View File

@ -834,6 +834,10 @@
(setq org-babel-load-languages '((shell . t)
(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)