diff options
author | Amin Bandali <bandali@kelar.org> | 2022-05-29 22:09:12 -0400 |
---|---|---|
committer | Amin Bandali <bandali@kelar.org> | 2022-05-29 22:09:12 -0400 |
commit | 74d836015d304dc840c6dcf3703771ab863a4985 (patch) | |
tree | 9bc947436966b01eb5fade3f68ac732977e8f0e6 | |
parent | 99b2827820540e6c64accd39e4e237378aebdcbc (diff) | |
download | configs-74d836015d304dc840c6dcf3703771ab863a4985.tar.gz configs-74d836015d304dc840c6dcf3703771ab863a4985.tar.xz configs-74d836015d304dc840c6dcf3703771ab863a4985.zip |
* .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.
-rw-r--r-- | .emacs.d/lisp/bandali-org.el | 4 |
1 files changed, 3 insertions, 1 deletions
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) |