Rework org-modern configuration
This commit is contained in:
parent
2ef64e9ebc
commit
35f509bb4d
19
config.org
19
config.org
|
@ -2665,6 +2665,7 @@ Doom Emacs's =+pretty= flag by default uses the package =org-superstar= to prett
|
||||||
(?* . "•"))
|
(?* . "•"))
|
||||||
org-modern-footnote
|
org-modern-footnote
|
||||||
(cons nil (cadr org-script-display))
|
(cons nil (cadr org-script-display))
|
||||||
|
org-modern-todo nil
|
||||||
org-modern-todo-faces
|
org-modern-todo-faces
|
||||||
'(("TODO" :inverse-video t :inherit org-todo)
|
'(("TODO" :inverse-video t :inherit org-todo)
|
||||||
("PROJ" :inverse-video t :inherit +org-todo-project)
|
("PROJ" :inverse-video t :inherit +org-todo-project)
|
||||||
|
@ -2680,7 +2681,6 @@ Doom Emacs's =+pretty= flag by default uses the package =org-superstar= to prett
|
||||||
("quote" "❝" "❞")
|
("quote" "❝" "❞")
|
||||||
("export" "⏩" "⏪"))
|
("export" "⏩" "⏪"))
|
||||||
org-modern-priority nil
|
org-modern-priority nil
|
||||||
org-modern-todo nil
|
|
||||||
org-modern-horizontal-rule (make-string 36 ?─)
|
org-modern-horizontal-rule (make-string 36 ?─)
|
||||||
org-modern-keyword
|
org-modern-keyword
|
||||||
'(("title" . "")
|
'(("title" . "")
|
||||||
|
@ -2688,7 +2688,7 @@ Doom Emacs's =+pretty= flag by default uses the package =org-superstar= to prett
|
||||||
("author" . "")
|
("author" . "")
|
||||||
("email" . "")
|
("email" . "")
|
||||||
("date" . "")
|
("date" . "")
|
||||||
("property" . "")
|
("property" . "")
|
||||||
("filetags" . "")
|
("filetags" . "")
|
||||||
("bind" . "")
|
("bind" . "")
|
||||||
("bibliography" . "")
|
("bibliography" . "")
|
||||||
|
@ -2740,18 +2740,23 @@ The default colors for various elements of =org-modern= don't match with our the
|
||||||
:strike-through ,(doom-color 'grey) :inherit org-hide)
|
:strike-through ,(doom-color 'grey) :inherit org-hide)
|
||||||
`(org-modern-done
|
`(org-modern-done
|
||||||
:foreground ,(doom-color 'fg-alt)
|
:foreground ,(doom-color 'fg-alt)
|
||||||
:background ,(doom-color 'bg-alt)
|
:background ,(doom-color 'modeline-bg)
|
||||||
:inherit org-modern-label)
|
:inherit org-modern-label)
|
||||||
|
`(org-modern-date-active
|
||||||
|
:height 1.1
|
||||||
|
:foreground ,(doom-color 'brown)
|
||||||
|
:inherit org-modern-done)
|
||||||
`(org-modern-date-inactive
|
`(org-modern-date-inactive
|
||||||
:foreground ,(doom-color 'doc-comments)
|
:foreground ,(doom-color 'doc-comments)
|
||||||
:inherit org-modern-date-active)
|
:inherit org-modern-date-active)
|
||||||
`(org-modern-time-active
|
`(org-modern-time-active
|
||||||
:foreground ,(doom-color 'bg-alt)
|
:height 1.1
|
||||||
:background ,(doom-color 'base5)
|
:foreground ,(doom-color 'fg-alt)
|
||||||
|
:background ,(doom-color 'base0)
|
||||||
:inherit org-modern-label)
|
:inherit org-modern-label)
|
||||||
`(org-modern-time-inactive
|
`(org-modern-time-inactive
|
||||||
:foreground ,(doom-color 'bg)
|
:foreground ,(doom-color 'grey)
|
||||||
:background ,(doom-color 'base2)
|
:background ,(doom-color 'modeline-bg-l)
|
||||||
:inherit org-modern-time-active)))
|
:inherit org-modern-time-active)))
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue