diff options
author | Amin Bandali <bandali@gnu.org> | 2019-08-31 13:24:14 -0400 |
---|---|---|
committer | Amin Bandali <bandali@gnu.org> | 2019-08-31 13:24:14 -0400 |
commit | 1bd1c70127ea81da229294d2b8da3dd55854c096 (patch) | |
tree | abfaeb959401e00725d937f4a66fe7954838c9a0 | |
parent | a5cf4300ad78adf0d1870cd4b01a83ee81b5151f (diff) | |
download | configs-1bd1c70127ea81da229294d2b8da3dd55854c096.tar.gz configs-1bd1c70127ea81da229294d2b8da3dd55854c096.tar.xz configs-1bd1c70127ea81da229294d2b8da3dd55854c096.zip |
emacs: gnus: more granular thread sorting
-rw-r--r-- | .emacs.d/init.el | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el index d889520..8088ce0 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -1967,7 +1967,11 @@ This function is intended for use with `ivy-ignore-buffers'." (bind-keys :map gnus-summary-mode-map ("M-L" . org-store-link)) - :hook (gnus-summary-mode . b/no-mouse-autoselect-window)) + :hook (gnus-summary-mode . b/no-mouse-autoselect-window) + :custom + (gnus-thread-sort-functions '(gnus-thread-sort-by-number + gnus-thread-sort-by-subject + gnus-thread-sort-by-date))) (use-feature gnus-msg :config |