From 9365cc4feed45034033d0de48db4607593fadc1e Mon Sep 17 00:00:00 2001 From: Felix Nehrke Date: Sat, 21 Feb 2026 13:57:05 +0100 Subject: [PATCH] Change mutt-date-format to show 24-hour format This was kind of a mistake to use `%I`, it should have always been `%H`. Even with the %p/%P addition the 12-hour format is hard to read on a quick browse and requires connstant backchecks - basically a nightmare to use in such environment for me... --- .config/mutt/muttrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/mutt/muttrc b/.config/mutt/muttrc index 824b97e..c2f920c 100644 --- a/.config/mutt/muttrc +++ b/.config/mutt/muttrc @@ -10,7 +10,7 @@ set confirm_append = no set editor = vim set sort_aux = last-date-received set mailcap_path = "$XDG_CONFIG_HOME/mutt/mailcap" -set date_format = "%d.%m.%y %I:%M" +set date_format = "%d.%m.%y %H:%M" set index_format = "%3C %Z %d %-30.30F %s (%-2.4c)" # Mandatory setting to be able to sync via offlineimap!