From 7995c169097fea214020e9338ccc1747fd00b921 Mon Sep 17 00:00:00 2001 From: larstvei Date: Wed, 12 Jul 2023 06:36:23 -0700 Subject: [PATCH] Fix with org-modern and org-adapt-indentation --- init.org | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/init.org b/init.org index 2cdedd4..9d2b3e1 100644 --- a/init.org +++ b/init.org @@ -1111,13 +1111,17 @@ ** Org Modern 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 ;; Modern looks for Org (use-package org-modern :after org - :hook (org-mode . org-modern-mode)) + :hook (org-mode . org-modern-mode) + :config + (setq org-modern-block-fringe nil)) #+end_src