mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-29 14:33:34 -05:00
BREAKING CHANGE: This changes the packages that +pretty depends on; removing org-superstar and org-fancy-priorities, and replacing them with org-modern. The user doesn't need to do anything but remove any now-defunct configuration for org-superstar and org-fancy-priorities from their config. This was done to simplify our config, lighten our maintenance burden, and rely on a more reliable (and still-maintained) package. Fix: #6434
15 lines
390 B
EmacsLisp
15 lines
390 B
EmacsLisp
;;; lang/org/contrib/pretty.el -*- lexical-binding: t; -*-
|
|
;;;###if (modulep! +pretty)
|
|
(after! org
|
|
(setq org-highlight-latex-and-related '(native script entities)))
|
|
|
|
|
|
(use-package! org-appear
|
|
:hook (org-mode . org-appear-mode))
|
|
|
|
|
|
(use-package! org-modern
|
|
:hook (org-mode . org-modern-mode)
|
|
:hook (org-agenda-finalize . org-modern-mode)
|
|
:hook (org-modern-mode . +org-pretty-mode))
|