From 72de3c63f77096d75d4a2ae976070a3f779db3c5 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Sun, 10 May 2020 00:29:17 +0200 Subject: [PATCH] Disable fancy UTF8 stars in org-mode --- config.org | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/config.org b/config.org index 683e1ba..5979611 100644 --- a/config.org +++ b/config.org @@ -307,3 +307,9 @@ one. Taken from [[https://github.com/hlissner/doom-emacs/tree/develop/modules/la (after! evil-org (remove-hook 'org-tab-first-hook #'+org-cycle-only-current-subtree-h)) #+END_SRC + +Disable fancy stars: + +#+BEGIN_SRC emacs-lisp +(remove-hook 'org-mode-hook #'org-superstar-mode) +#+END_SRC