diff options
author | Vincent Ambo <tazjin@google.com> | 2019-12-25T13·09+0100 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2019-12-25T13·09+0100 |
commit | b59788779ac45de4e903e81059b55b4115d0319b (patch) | |
tree | 8ea6f7774f50abc782301bb582bf0e040903c6f3 /tools/emacs/config | |
parent | 3c94625a5fa352ccc73a82f554346ad00a176f25 (diff) |
fix(emacs.d): Display newest emails first in notmuch r/301
Diffstat (limited to 'tools/emacs/config')
-rw-r--r-- | tools/emacs/config/init.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/emacs/config/init.el b/tools/emacs/config/init.el index 4129de4d37a5..614eadae0332 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))) |