aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--VERSION4
-rw-r--r--mutt/muttrc7
-rw-r--r--vim/vimrc4
3 files changed, 10 insertions, 5 deletions
diff --git a/VERSION b/VERSION
index 08662775..2334a69d 100644
--- a/VERSION
+++ b/VERSION
@@ -1,2 +1,2 @@
-tejr dotfiles v10.2.0
-Wed, 08 Jul 2020 09:55:12 +0000
+tejr dotfiles v10.3.0
+Wed, 15 Jul 2020 08:39:01 +0000
diff --git a/mutt/muttrc b/mutt/muttrc
index 11efc4bb..201a41f7 100644
--- a/mutt/muttrc
+++ b/mutt/muttrc
@@ -275,7 +275,7 @@ macro generic,index,browser,pager \\R '\
# "date".
#
set sort = threads
-set my_sort_alt = date
+set my_sort_alt = date-received
macro index \\t '\
<enter-command>set my_sort_tmp = $sort<enter>\
<enter-command>set sort = $my_sort_alt<enter>\
@@ -284,6 +284,11 @@ macro index \\t '\
<enter-command>set ?sort<enter>' \
"Toggle thread display"
+# When threads are on, sort them by the date the most recent message within
+# them was received.
+#
+set sort_aux = last-date-received
+
# Set a few simple colors just for a quick visual cue of which tool I'm looking
# at and for some visual distinction between text, signature, and quote. The
# navigation bar is a nice dark green.
diff --git a/vim/vimrc b/vim/vimrc
index f276cb92..2aaf5eb2 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -2,7 +2,7 @@
" Tom Ryder (tejr)’s Literate Vimrc
" ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
"
-" Last updated: Wed, 10 Jun 2020 22:41:57 UTC
+" Last updated: Wed, 08 Jul 2020 12:19:04 UTC
"
" │ And I was lifted up in heart, and thought
" │ Of all my late-shown prowess in the lists,
@@ -330,7 +330,7 @@ filetype plugin indent on
" There are a couple of contexts in which it's useful to reload filetypes for
" the current buffer, quietly doing nothing if filetypes aren't enabled.
" We'll set up a user command named :ReloadFileType to do this, with
-" an autloaded function backing it.
+" an autoloaded function backing it.
"
command! -bar ReloadFileType
\ call reload#FileType()