▲ 2 r/emacs
Is org-modern causing dimmer to make my org-mode agenda dim at startup?
I'm fairly new to all this, so I might be doing something to cause this problem.
I show my org-mode agenda by default when I start Emacs, and I use dimmer to make all of the other (inactive) buffers dim. I added org-modern to my init.el, and now when I start Emacs my agenda is dim, even though it's the active buffer. If I remove org-modern, everything works fine.
My init.el has three pieces that I think are involved.
;; Make the inactive buffers dimmer.
(use-package dimmer
:custom (dimmer-fraction 0.4)
:config (dimmer-mode))
;; Make org mode look better.
(use-package org-modern
:after org
:hook
((org-mode . org-modern-mode)
(org-agenda-finalize . org-modern-agenda)))
;; Show org-mode agenda at startup.
(add-hook 'after-init-hook (lambda ()
(org-agenda-list)
(delete-other-windows)))
I really don't know what I'm doing, so if anyone has any ideas, I would appreciate the help. Thanks!
u/Astronaut6735 — 3 days ago