Attempt to fix org-msg by not soading it until mu4e loads

This commit is contained in:
Gergely Polonkai 2021-11-23 09:54:34 +01:00
parent ecfe42050b
commit e47a83c023
No known key found for this signature in database
GPG Key ID: 2D2885533B869ED4
1 changed files with 3 additions and 1 deletions

View File

@ -3100,10 +3100,12 @@ This is a big one; I use a lot of customisation here.
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(use-package org-msg (use-package org-msg
:after mu4e
:defer t
:config :config
(org-msg-mode) (org-msg-mode)
:custom :custom
(org-msg-supported-mua '((sendmail-user-agent . "mu4e"))) (org-msg-supported-mua '((sendmail-user-agent . "mu4e")))
(org-msg-options "html-postamble:nil H:5 num:nil ^:{} toc:nil") (org-msg-options "html-postamble:nil H:5 num:nil ^:{} toc:nil")
(org-msg-startup "hidestars indent inlineimages") (org-msg-startup "hidestars indent inlineimages")
(org-msg-greeting-fmt "\nHello,\n\n") (org-msg-greeting-fmt "\nHello,\n\n")