diff options
author | User Mms <mms@voyager.local> | 2024-10-16 22:54:49 +0200 |
---|---|---|
committer | User Mms <mms@voyager.local> | 2024-10-16 22:54:49 +0200 |
commit | ae00c756719d1201051e619b3d28da6fb66826eb (patch) | |
tree | 8fb2989ac4b98baeb2601f1f40ad845f243de82b /mms-misc.org | |
parent | 6122e5ffd25b6d80a2d63165e45d29bc9594bb02 (diff) |
fix
Diffstat (limited to 'mms-misc.org')
-rw-r--r-- | mms-misc.org | 22 |
1 files changed, 17 insertions, 5 deletions
diff --git a/mms-misc.org b/mms-misc.org index 967bd90..c051613 100644 --- a/mms-misc.org +++ b/mms-misc.org @@ -42,13 +42,25 @@ I use notmuch as my MUA. You can find my guide on my [[https://michal.sapka.me/emacs/notmuch/][emacs site]]. #+BEGIN_SRC emacs-lisp - (use-package notmuch - :commands notmuch-hello - :config - (setq notmuch-search-oldest-first nil - notmuch-search-line-faces '(("gh-pr-todo" . ((t :foreground "#f77"))))) ) + (use-package notmuch + :commands notmuch-hello + :config + (setq notmuch-tree-result-format + '(("date" . "%12s ") + ("authors" . "%-20s ") + ((("tree" . "%s") + ("subject" . "%s")) + . " %-80s ") + ("tags" . "(%s)"))) + (setq + notmuch-hello-auto-refresh t + notmuch-search-oldest-first nil + notmuch-search-line-faces '(("gh-pr-todo" . ((t :foreground "#f77"))))) ) #+END_SRC +#+RESULTS: +: [nil 26381 35704 951650 nil elpaca-process-queues nil nil 443000 nil] + ** composing I use =msmtp= for email sendout. |