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...
This commit is contained in:
2026-02-21 13:57:05 +01:00
parent f9bcee8783
commit 9365cc4fee

View File

@@ -10,7 +10,7 @@ set confirm_append = no
set editor = vim set editor = vim
set sort_aux = last-date-received set sort_aux = last-date-received
set mailcap_path = "$XDG_CONFIG_HOME/mutt/mailcap" 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)" set index_format = "%3C %Z %d %-30.30F %s (%-2.4c)"
# Mandatory setting to be able to sync via offlineimap! # Mandatory setting to be able to sync via offlineimap!