Jousimies/.emacs.d

Mu4e icons

Closed this issue · 0 comments

(setq mu4e-headers-seen-mark `("S" . ,(propertize
                                       (all-the-icons-material "mail_outline")
                                       'face `(:family ,(all-the-icons-material-family)
                                                       :foreground ,(face-background 'default)))))
(setq mu4e-headers-new-mark `("N" . ,(propertize
                                      (all-the-icons-material "markunread")
                                      'face `(:family ,(all-the-icons-material-family)
                                                      :foreground ,(face-background 'default)))))
(setq mu4e-headers-unread-mark `("u" . ,(propertize
                                         (all-the-icons-material "notifications_none")
                                         'face 'mu4e-unread-face)))
(setq mu4e-headers-signed-mark `("s" . ,(propertize
                                         (all-the-icons-material "check")
                                         'face `(:family ,(all-the-icons-material-family)
                                                         :foreground "DarkCyan"))))
(setq mu4e-headers-encrypted-mark `("x" . ,(propertize
                                            (all-the-icons-material "enhanced_encryption")
                                            'face `(:family ,(all-the-icons-material-family)
                                                            :foreground "CornflowerBlue"))))
(setq mu4e-headers-draft-mark `("D" . ,(propertize
                                        (all-the-icons-material "drafts")
                                        'face 'mu4e-draft-face)))
(setq mu4e-headers-attach-mark `("a" . ,(propertize
                                         (all-the-icons-material "attachment")
                                         'face 'mu4e-attach-number-face)))
(setq mu4e-headers-passed-mark `("P" . ,(propertize ; ❯ (I'm participated in thread)
                                         (all-the-icons-material "center_focus_weak")
                                         'face `(:family ,(all-the-icons-material-family)
                                                         :foreground "yellow"))))
(setq mu4e-headers-flagged-mark `("F" . ,(propertize
                                          (all-the-icons-material "flag")
                                          'face 'mu4e-flagged-face)))
(setq mu4e-headers-replied-mark `("R" . ,(propertize
                                          (all-the-icons-material "reply_all")
                                          'face 'mu4e-replied-face)))
(setq mu4e-headers-trashed-mark `("T" . ,(propertize
                                          (all-the-icons-material "delete_forever")
                                          'face 'mu4e-trashed-face)))