Disable fancy UTF8 stars in org-mode

This commit is contained in:
Antoine Martin 2020-05-10 00:29:17 +02:00
parent eb24aeb1d2
commit 72de3c63f7

View file

@ -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