From 74d836015d304dc840c6dcf3703771ab863a4985 Mon Sep 17 00:00:00 2001 From: Amin Bandali Date: Sun, 29 May 2022 22:09:12 -0400 Subject: [PATCH] * .emacs.d/lisp/bandali-org.el: Disable org-indent-mode for now. It doesn't seem to play nice with `display-fill-column-indicator'; and since I recently started using that (and very much like it), don't turn this on anymore for now. --- .emacs.d/lisp/bandali-org.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.emacs.d/lisp/bandali-org.el b/.emacs.d/lisp/bandali-org.el index 940e556..9ffa538 100644 --- a/.emacs.d/lisp/bandali-org.el +++ b/.emacs.d/lisp/bandali-org.el @@ -52,7 +52,9 @@ (define-key org-mode-map (kbd "M-L") #'org-insert-last-stored-link) (define-key org-mode-map (kbd "M-O") #'org-toggle-link-display) ;; hooks - (add-hook 'org-mode-hook #'org-indent-mode) + ;; `org-indent-mode' doesn't seem to play nice with + ;; `display-fill-column-indicator'. + ;; (add-hook 'org-mode-hook #'org-indent-mode) (add-hook 'org-mode-hook #'auto-fill-mode) (add-hook 'org-mode-hook #'flyspell-mode) -- 2.20.1