diff options
| author | Miquel Sabaté Solà <msabate@suse.com> | 2023-09-18 15:57:17 +0200 |
|---|---|---|
| committer | Miquel Sabaté Solà <msabate@suse.com> | 2023-09-18 15:57:17 +0200 |
| commit | 3ae7e2a73c0151c6f102133e3506e93d9e8853e7 (patch) | |
| tree | db8fc4e756ee6ba25337569dfa714d1548f8fa8a /.doom.d/config.el | |
| parent | 4c11b4ddffbb08b9c17727ec8c2e8a7620341f61 (diff) | |
| download | dotfiles-3ae7e2a73c0151c6f102133e3506e93d9e8853e7.tar.gz dotfiles-3ae7e2a73c0151c6f102133e3506e93d9e8853e7.zip | |
mu: removed outdated stuff
The workaround for `headers-buffer-name` is no longer needed. Moreover,
I have also added a guard to check for a globally installed mu4e.
Signed-off-by: Miquel Sabaté Solà <msabate@suse.com>
Diffstat (limited to '.doom.d/config.el')
| -rw-r--r-- | .doom.d/config.el | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/.doom.d/config.el b/.doom.d/config.el index 5ec9a6c..b895de2 100644 --- a/.doom.d/config.el +++ b/.doom.d/config.el @@ -215,11 +215,10 @@ littering will happen locally." ;;; Email -(after! mu4e - ;; NOTE: hot fix for doomemacs#6891. This should be removed when upgrading out - ;; of mu4e 1.6.x. - (setq mu4e-headers-buffer-name mu4e~headers-buffer-name) +;; Sometimes the load path is not properly set for RPM installs... +(add-to-list 'load-path "/usr/share/emacs/site-lisp/mu4e") +(after! mu4e ;; Use `msmtp' as the program for sending email. (setq sendmail-program (executable-find "msmtp") send-mail-function #'smtpmail-send-it |
