From b2cc06d1bf7ec15419461772f30dca21d96fded4 Mon Sep 17 00:00:00 2001 From: Miquel Sabaté Solà Date: Fri, 6 Sep 2024 07:32:33 +0200 Subject: emacs: Fix message view MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit For some reason the `message-view-patch` hook stopped working. Let's make sure it's always applied. Moreover, I've recently realized that emojis were present in some of the code. Let's be boring and opt out of it. Signed-off-by: Miquel Sabaté Solà --- .config/doom/config.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '.config') diff --git a/.config/doom/config.el b/.config/doom/config.el index 6b28720..8e39811 100644 --- a/.config/doom/config.el +++ b/.config/doom/config.el @@ -214,6 +214,7 @@ (setq message-kill-buffer-on-exit t mu4e-update-interval 600 mu4e-use-fancy-chars nil + gnus-treat-display-smileys nil ;; doom-emacs adds a lot of clutter here and I'm a simple man. mu4e-headers-fields @@ -254,8 +255,7 @@ nil) ;; Colorize patch-based emails -(after! message-view-patch - (add-hook 'gnus-part-display-hook 'message-view-patch-highlight)) +(add-hook 'gnus-part-display-hook 'message-view-patch-highlight) ;; Last but not least, let's configure PGP with mu4e. (setq mml-secure-openpgp-signers '("0x96BE8C6FD89D6565") -- cgit v1.2.3