diff --git a/emacs/.config/doom/config.el b/emacs/.config/doom/config.el index 430580e..588db6e 100644 --- a/emacs/.config/doom/config.el +++ b/emacs/.config/doom/config.el @@ -105,3 +105,10 @@ (if (file-exists-p host-init) (load-file host-init)) (load-file "~/.config/doom/+agenda-fix.el") + +;; Enable org-modern mode per buffer + ;(add-hook 'org-mode-hook #'org-modern-mode) + ;(add-hook 'org-agenda-finalize-hook #'org-modern-agenda) + +;; Or globally +(with-eval-after-load 'org (global-org-modern-mode)) diff --git a/emacs/.config/doom/packages.el b/emacs/.config/doom/packages.el index 174a856..2dd053f 100644 --- a/emacs/.config/doom/packages.el +++ b/emacs/.config/doom/packages.el @@ -17,6 +17,7 @@ (package! ace-link) (package! git-link) (package! blacken) +(package! org-modern) ;; To install a package directly from a remote git repo, you must specify a ;; `:recipe'. You'll find documentation on what `:recipe' accepts here: