about summary refs log tree commit diff
path: root/tools/emacs
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@google.com>2019-12-25T13·09+0100
committerVincent Ambo <tazjin@google.com>2019-12-25T13·09+0100
commitb59788779ac45de4e903e81059b55b4115d0319b (patch)
tree8ea6f7774f50abc782301bb582bf0e040903c6f3 /tools/emacs
parent3c94625a5fa352ccc73a82f554346ad00a176f25 (diff)
fix(emacs.d): Display newest emails first in notmuch r/301
Diffstat (limited to 'tools/emacs')
-rw-r--r--tools/emacs/config/init.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/emacs/config/init.el b/tools/emacs/config/init.el
index 4129de4d37..614eadae03 100644
--- a/tools/emacs/config/init.el
+++ b/tools/emacs/config/init.el
@@ -95,7 +95,9 @@
 (use-package multiple-cursors)
 
 (use-package notmuch
-  :bind (:map global-map ("s-g m" . notmuch))) ;; g m -> gmail
+  :bind (:map global-map ("s-g m" . notmuch)) ;; g m -> gmail
+  :config
+  (setq notmuch-search-oldest-first nil))
 
 (use-package paredit :hook ((lisp-mode . paredit-mode)
                             (emacs-lisp-mode . paredit-mode)))