diff options
| author | Miquel Sabaté Solà <mikisabate@gmail.com> | 2024-09-06 07:32:33 +0200 |
|---|---|---|
| committer | Miquel Sabaté Solà <mikisabate@gmail.com> | 2024-09-06 07:32:33 +0200 |
| commit | b2cc06d1bf7ec15419461772f30dca21d96fded4 (patch) | |
| tree | db400f6743c479407966ceaa5c313841b664f73c /.config | |
| parent | cba98bb576a8cf828b94053553cdbd6a69fa6baf (diff) | |
| download | dotfiles-b2cc06d1bf7ec15419461772f30dca21d96fded4.tar.gz dotfiles-b2cc06d1bf7ec15419461772f30dca21d96fded4.zip | |
emacs: Fix message view
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à <mikisabate@gmail.com>
Diffstat (limited to '.config')
| -rw-r--r-- | .config/doom/config.el | 4 |
1 files changed, 2 insertions, 2 deletions
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") |
