diff options
author | Robin Jarry <robin@jarry.cc> | 2021-11-06 17:44:53 +0100 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2021-11-06 17:44:53 +0100 |
commit | fe7ed940d3712b0e3622508a97271242c50a9d8d (patch) | |
tree | c6f697d8867deb5081334f05b44f9eddf6974a60 | |
parent | 84146e23b384e42c63287e3519e70b0a6ea3100f (diff) | |
download | aerc-fe7ed940d3712b0e3622508a97271242c50a9d8d.tar.gz |
config: use dynamic time format for default config
New users may find this nicer than a static format.
Signed-off-by: Robin Jarry <robin@jarry.cc>
-rw-r--r-- | config/aerc.conf.in | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/config/aerc.conf.in b/config/aerc.conf.in index c57c7744..9bd26ade 100644 --- a/config/aerc.conf.in +++ b/config/aerc.conf.in @@ -7,7 +7,7 @@ # with mutt's printf-like syntax. # # Default: %D %-17.17n %Z %s -index-format=%D %-17.17n %Z %s +index-format=%-20.20D %-17.17n %Z %s # # See time.Time#Format at https://godoc.org/time#Time.Format @@ -19,22 +19,22 @@ timestamp-format=2006-01-02 03:04 PM # Index-only time format for messages that were received/sent today. # If this is not specified, timestamp-format is used instead. # -# Default: "" -this-day-time-format= +# Default: "03:04 PM" (12 hour time) +this-day-time-format=03:04 PM # # Index-only time format for messages that were received/sent within the last # 7 days. If this is not specified, timestamp-format is used instead. # -# Default: "" -this-week-time-format= +# Default: "Monday 03:04 PM" (Week day + 12 hour time) +this-week-time-format=Monday 03:04 PM # # Index-only time format for messages that were received/sent this year. # If this is not specified, timestamp-format is used instead. # -# Default: "" -this-year-time-format= +# Default: "January 02" (Month + month day) +this-year-time-format=January 02 # # Width of the sidebar, including the border. |