Fix with org-modern and org-adapt-indentation

This commit is contained in:
larstvei 2023-07-12 06:36:23 -07:00
parent 892590655c
commit 7995c16909

View File

@ -1111,13 +1111,17 @@
** Org Modern ** Org Modern
Touch up the appearance of org mode files with some fancy UTF-8 characters. Touch up the appearance of org mode files with some fancy UTF-8 characters.
I disable ~org-modern-block-fringe~ due to [[https://github.com/minad/org-modern/issues/144][org-modern conflicting with]]
~org-adapt-indentation~.
#+begin_src emacs-lisp #+begin_src emacs-lisp
;; Modern looks for Org ;; Modern looks for Org
(use-package org-modern (use-package org-modern
:after org :after org
:hook (org-mode . org-modern-mode)) :hook (org-mode . org-modern-mode)
:config
(setq org-modern-block-fringe nil))
#+end_src #+end_src