diff options
author | jao <jao@gnu.org> | 2021-07-26 00:34:27 +0100 |
---|---|---|
committer | jao <jao@gnu.org> | 2021-07-26 00:35:01 +0100 |
commit | dbb475ebfb7ef4a9b21e7174eeb9242db362c503 (patch) | |
tree | 80876c53e649a92f78820cad75f00f337678f562 | |
parent | 1131ce49caab8ae372a41a70166474abf45047fd (diff) | |
download | elibs-dbb475ebfb7ef4a9b21e7174eeb9242db362c503.tar.gz elibs-dbb475ebfb7ef4a9b21e7174eeb9242db362c503.tar.bz2 |
notmuch: emacs queries
-rw-r--r-- | init.org | 2 | ||||
-rw-r--r-- | notmuch.org | 18 |
2 files changed, 12 insertions, 8 deletions
@@ -1504,7 +1504,7 @@ #+end_src * Email #+begin_src emacs-lisp - (setq jao-afio-mail-function 'gnus) + (setq jao-afio-mail-function 'notmuch) (jao-load-org "email") #+end_src * PDFs diff --git a/notmuch.org b/notmuch.org index 76e484c..4f9b3ee 100644 --- a/notmuch.org +++ b/notmuch.org @@ -76,10 +76,10 @@ ,@(jao-notmuch--mboxes-search "jao") ,(jao-notmuch--q "feeds" "papers" "fp" '("tag:papers" "tag:new")) ,(jao-notmuch--q "local" nil "l" '("tag:local" "tag:new")) - ,(jao-notmuch--q "gmane" "emacs" "e") - ,(jao-notmuch--q "gmane" nil "g" - '("tag:gmane" "tag:new" - "not tag:emacs" "not tag:papers")) + ,(jao-notmuch--q "emacs" "github" "eg" '("tag:new" "tag:emacs-github")) + ,(jao-notmuch--q "emacs" "devel" "ed" '("tag:new" "tag:emacs-devel")) + ,(jao-notmuch--q "emacs" "bugs" "eb" '("tag:new" "tag:emacs-bugs")) + ,(jao-notmuch--q "emacs" "diffs" "ec" '("tag:new" "tag:emacs-diffs")) ,@(jao-notmuch--mboxes-search "feeds") ,(jao-notmuch--q "bml" "today" "tb" '("tag:bigml" "date:1d..") t) ,(jao-notmuch--q "jao" "today" "tj" @@ -118,6 +118,7 @@ :init (setq notmuch-draft-folder "jao/drafts" notmuch-draft-quoted-tags '("part") + notmuch-column-control 1.0 notmuch-hello-sections '(notmuch-hello-insert-saved-searches notmuch-hello-insert-alltags notmuch-hello-insert-header) @@ -185,19 +186,22 @@ :bind (:map notmuch-hello-mode-map (("a" . jao-notmuch-refresh-agenda) + ("n" . widget-forward) ("S" . consult-notmuch) ("g" . jao-notmuch-refresh-hello) ("." . jao-notmuch-hello-first) ("SPC" . widget-button-press)) :map notmuch-common-keymap (("E" . jao-notmuch-open-enclosure)))) - #+end_src -* tree view - #+begin_src emacs-lisp + (use-package jao-notmuch :demand t :config (setq jao-notmuch-mailboxes (jao-mailbox-folders))) + + #+end_src +* tree view + #+begin_src emacs-lisp (use-package notmuch-tree :config |