diff options
| author | Thomas Schneider <qsx@chaotikum.eu> | 2024-09-11 21:49:09 +0200 |
|---|---|---|
| committer | Thomas Schneider <qsx@chaotikum.eu> | 2024-09-11 21:49:09 +0200 |
| commit | 8956fab75f64598186e8bdec5fcfdd73c071a5f3 (patch) | |
| tree | 8e2c8eca02ee5ce418c4945a075c19b46b02450b | |
| parent | d26912ac5cdc6710f3f599c44f4578a44bffea72 (diff) | |
Emacs: Gnus: Improve user-date-format
| -rw-r--r-- | dot.emacs.d/init.el | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/dot.emacs.d/init.el b/dot.emacs.d/init.el index cad5d37..56945a0 100644 --- a/dot.emacs.d/init.el +++ b/dot.emacs.d/init.el @@ -356,11 +356,12 @@ message-confirm-send t mail-user-agent 'gnus-user-agent read-mail-command 'gnus - gnus-gcc-mark-as-read t - gnus-user-date-format-alist `((,(gnus-seconds-today) . " T%H:%M:%S") - (,(gnus-seconds-month) . " %dT%H:%M:%S") - (,(gnus-seconds-year) . " %m-%dT%H:%M:%S") - (t . "%Y-%m-%dT%H:%M:%S")) + gnus-gcc-mark-as-read t) + (setq gnus-user-date-format-alist '(((gnus-seconds-today) . " %H:%M:%S") + ((gnus-seconds-month) . "%a %e %H:%M:%S") + ((gnus-seconds-year) . "%a %m-%d %H:%M:%S") + (t . "%a %Y-%m-%d %H:%M:%S"))) + (setq gnus-summary-line-format "%U%R %&user-date; %(%[%5k: %-23,23f%]%)%B%s\n" gnus-sum-thread-tree-single-indent " " gnus-sorted-header-list '("^From:" "^Organization:" "^Sender:" "^To:" "^Newsgroups:" "^.?Cc:" "^Subject:" "^Date:" "^Resent-.*:" "^Reply-To:" "^Followup-To:" "^X-Clacks-Overhead:" "Openpgp:" "^Authentication-Results:" "^Message-ID:") |
