Skip to content

Custom Tag Faces

By default, entries tagged ‘unread’ will have bolded titles in the ‘*elfeed-search*’ listing. You can customize how tags affect an entry’s appearance by customizing ‘elfeed-search-face-alist’. For example, this configuration makes entries tagged ‘important’ stand out in red.

emacs-lisp
(defface important-elfeed-entry
  '((t :foreground "#f77"))
  "Marks an important Elfeed entry.")

(push '(important important-elfeed-entry)
      elfeed-search-face-alist)

All faces from all tags will be applied to the entry title. The faces will be ordered as they appear in ‘elfeed-search-face-alist’.