From 18de42ecdec2c73b701ee978235f3735a7be66e8 Mon Sep 17 00:00:00 2001 From: larstvei Date: Sat, 24 Jun 2023 11:23:36 +0200 Subject: [PATCH] Prettier org mode --- init.org | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/init.org b/init.org index f309104..e833bd3 100644 --- a/init.org +++ b/init.org @@ -965,6 +965,7 @@ (setq org-adapt-indentation t org-hide-leading-stars t org-hide-emphasis-markers t + org-pretty-entities t org-src-fontify-natively t org-edit-src-content-indentation 0)) @@ -1076,16 +1077,16 @@ #+end_src -** Bullets +** Org Modern - Touch up the headings a bit, with some fancy UTF-8 characters. + Touch up the appearance of org mode files with some fancy UTF-8 characters. #+begin_src emacs-lisp - ;; Show bullets in org-mode as UTF-8 characters - (use-package org-bullets + ;; Modern looks for Org + (use-package org-modern :after org - :hook (org-mode . (lambda () (org-bullets-mode 1)))) + :hook (org-mode . org-modern-mode)) #+end_src