diff options
| author | Kévin Le Gouguec <kevin.legouguec@gmail.com> | 2023-01-09 00:08:09 +0100 |
|---|---|---|
| committer | Kévin Le Gouguec <kevin.legouguec@gmail.com> | 2023-01-09 00:08:09 +0100 |
| commit | b1a5eb339a7f7c03109d61218b4e92d9b484478f (patch) | |
| tree | 46e11552051dba13872bc849f5859c2fe896e876 /.gnus | |
| parent | 212ccdffb21fcce8e62c425b5ff36443f384dfce (diff) | |
| download | dotfiles-b1a5eb339a7f7c03109d61218b4e92d9b484478f.tar.xz | |
Teach Gnus to use new theme face for dates
Diffstat (limited to '.gnus')
| -rw-r--r-- | .gnus | 13 |
1 files changed, 10 insertions, 3 deletions
@@ -26,7 +26,7 @@ ;; for now because I'm not sure which I'll settle for. gnus-message-archive-group nil - ;; Display + ;; Summary display. gnus-summary-line-format "%*%U%R %-16,16&user-date; %B%-23,23f %s\n" gnus-summary-dummy-line-format " ╭ %S\n" gnus-summary-make-false-root 'dummy @@ -40,7 +40,6 @@ gnus-thread-sort-functions '(gnus-thread-sort-by-number (not gnus-thread-sort-by-most-recent-date)) - gnus-treat-display-smileys nil gnus-user-date-format-alist '(((gnus-seconds-today) . "%H:%M") ((+ 86400 (gnus-seconds-today)) @@ -52,7 +51,15 @@ ((gnus-seconds-year) . "%b %d") (t - . "%F"))) + . "%F")) + ;; Article display. + gnus-header-face-alist + '(("From" nil gnus-header-from) + ("Subject" nil gnus-header-subject) + ("Date" nil eighters-date) + ("Newsgroups:.*," nil gnus-header-newsgroups) + ("" gnus-header-name gnus-header-content)) + gnus-treat-display-smileys nil) (add-hook 'gnus-summary-mode-hook (lambda () |
