mu4e.texi: add headers-mark customization example

This commit is contained in:
Dirk-Jan C. Binnema
2022-12-21 23:28:54 +02:00
parent 67db2ce092
commit ba09b8fc2c

View File

@ -4237,6 +4237,28 @@ try the @emph{unicode-fonts} package:
(unicode-fonts-setup) (unicode-fonts-setup)
@end lisp @end lisp
It's possible to customize various header marks as well, with a ``fancy'' and
``non-fancy'' version (if you cannot see some the ``fancy'' characters, that is
an indication that the font you are using does not support those characters.
@lisp
(setq
mu4e-headers-draft-mark '("D" . "💈")
mu4e-headers-flagged-mark '("F" . "📍")
mu4e-headers-new-mark '("N" . "🔥")
mu4e-headers-passed-mark '("P" . "")
mu4e-headers-replied-mark '("R" . "")
mu4e-headers-seen-mark '("S" . "☑")
mu4e-headers-trashed-mark '("T" . "💀")
mu4e-headers-attach-mark '("a" . "📎")
mu4e-headers-encrypted-mark '("x" . "🔒")
mu4e-headers-signed-mark '("s" . "🔑")
mu4e-headers-unread-mark '("u" . "⎕")
mu4e-headers-list-mark '("s" . "🔈")
mu4e-headers-personal-mark '("p" . "👨")
mu4e-headers-calendar-mark '("c" . "📅"))
@end lisp
@node Refiling messages @node Refiling messages
@section Refiling messages @section Refiling messages