From 0a3466cd31fd6bfcba157007e9b3ff7c59ea8d28 Mon Sep 17 00:00:00 2001 From: Mark Wooding Date: Sun, 24 May 2020 16:23:42 +0100 Subject: [PATCH] dot/gnus.el: Include an abbreviated date in summary lines. --- dot/gnus.el | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/dot/gnus.el b/dot/gnus.el index f6f4438..ff2210e 100644 --- a/dot/gnus.el +++ b/dot/gnus.el @@ -38,9 +38,15 @@ (setq gnus-use-trees nil) (setq gnus-summary-make-false-root 'dummy) (setq gnus-summary-line-format - "%U%R%z%4L %(%[%-16,16f%]%): %B %s\n" + "%U%R%z%4L %(%[%-16,16f%]%): %&user-date; %B %s\n" gnus-summary-dummy-line-format - " %(%[----------------%]%): * %S\n") + " %(%[----------------%]%): * %S\n" + gnus-user-date-format-alist + '(((gnus-seconds-today) . "*** %H:%M") + (604800 . "%a %H:%M") + ((gnus-seconds-month) . " %a %_d") + ((gnus-seconds-year) . " %_d %b") + (t . " %b %Y"))) (setq gnus-sum-thread-tree-root ">" gnus-sum-thread-tree-false-root ">" gnus-sum-thread-tree-single-indent "=" -- 2.11.0