commit dd529a8d85d4afbc52f24f5d5d3395dd0e1309b3
parent cf87c73c8e589854a14fedc0d6f8660d6828ffab
Author: Alex Balgavy <alex@balgavy.eu>
Date: Mon, 22 Nov 2021 19:08:23 +0100
mutt: finally use the thread sorting I want
They fixed the github issue, yay!
Diffstat:
1 file changed, 8 insertions(+), 2 deletions(-)
diff --git a/mutt/muttrc b/mutt/muttrc
@@ -57,8 +57,14 @@ bind generic : tag-prefix
set date_format = "%d/%m"
set index_format="%2C %Z %?X?A& ? %D %-15.15F %s (%-4.4c) %> [%g]"
-set sort = threads # like gmail
-set sort_aux = reverse-last-date-received # like gmail.
+
+# Github issue was fixed, yay!
+# Threads should be sorted by date, top-to-botom.
+# Newest top-level messages should appear at the top.
+set use_threads = yes
+set sort = reverse-last-date-received
+set sort_aux = date-received
+
# there's an issue with sorting where messages in threads should be sorted by date, top-to-bottom.
# but at the moment it's a "wontfix". hopefully that changes soon.
# https://github.com/neomutt/neomutt/issues/2342,