tweak(wanderlust): add +xface flag

This commit is contained in:
Kirill A. Korinsky 2024-01-14 14:31:31 +01:00
parent a20ca0cc0a
commit a461a1f62c
No known key found for this signature in database
GPG key ID: 98D8D9867759226E
3 changed files with 17 additions and 0 deletions

View file

@ -82,6 +82,11 @@
(setq wl-message-id-domain wl-local-domain))
;; Use x-face only when compface installed
(when (modulep! +xface)
(autoload 'x-face-decode-message-header "x-face-e21")
(setq wl-highlight-x-face-function 'x-face-decode-message-header))
;; Use alert for alerting
(when (fboundp 'alert)
(setq wl-biff-notify-hook '((lambda () (alert "You have new mail!" :title "Wanderlust")))))