From df604ff6e038248921d91a838e9a190311a0e504 Mon Sep 17 00:00:00 2001 From: Matthew Gordon Date: Tue, 28 Jun 2022 17:02:07 -0400 Subject: [PATCH] Add Org Modern as the default style for Org mode Why is this change needed? -------------------------- I don't know if it's _needed_, but I use Org a lot. Having modern UI elements makes the experience more pleasant. How does it address the issue? ------------------------------ Org Modern[1] makes some nice improvements to the elements without being tied to a particular theme. Any links to any relevant tickets, articles or other resources? --------------------------------------------------------------- 1 - https://github.com/minad/org-modern --- .emacs.d/config.org | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.emacs.d/config.org b/.emacs.d/config.org index a28d327..10ead08 100644 --- a/.emacs.d/config.org +++ b/.emacs.d/config.org @@ -536,6 +536,10 @@ blacklists a few modes, it belongs in Global. ** Org #+BEGIN_SRC emacs-lisp + ;; Add modern styling to lots of different elements in Org mode. + ;; https://github.com/minad/org-modern + (use-package org-modern + :init (global-org-modern-mode)) (add-hook 'org-mode-hook 'auto-fill-mode)