summaryrefslogtreecommitdiffhomepage
path: root/gnus.org
diff options
context:
space:
mode:
authorjao <jao@gnu.org>2022-02-28 19:59:53 +0000
committerjao <jao@gnu.org>2022-02-28 19:59:53 +0000
commit7c0ae514b67723fa62229e1778e727833228f016 (patch)
treef7ae5cc6161305703a0bb2691b6343c74d5dec4f /gnus.org
parent9c1becb12896ee1cc30131eb5e8bc1ac57f2ace0 (diff)
downloadelibs-7c0ae514b67723fa62229e1778e727833228f016.tar.gz
elibs-7c0ae514b67723fa62229e1778e727833228f016.tar.bz2
whitespace
Diffstat (limited to 'gnus.org')
-rw-r--r--gnus.org27
1 files changed, 13 insertions, 14 deletions
diff --git a/gnus.org b/gnus.org
index 3273750..d68c040 100644
--- a/gnus.org
+++ b/gnus.org
@@ -367,8 +367,19 @@
(jao-minibuffer-add-variable 'jao-gnus--notify-strs -20))
#+end_src
-* Notmuch integration
-*** notmuch -> gnus
+* Delayed messages
+ #+BEGIN_SRC emacs-lisp
+ ;;; delayed messages (C-cC-j in message buffer)
+ (require 'gnus-util)
+ (gnus-delay-initialize)
+ (setq gnus-delay-default-delay "3h")
+ ;;; so that the Date is set when the message is sent, not when it's
+ ;;; delayed
+ (eval-after-load "message"
+ '(setq message-draft-headers (remove 'Date message-draft-headers)))
+ #+END_SRC
+* Add-ons
+*** notmuch -> gnus / consult-notmuch
#+begin_src emacs-lisp
(defun jao-notmuch-goto-message-in-gnus ()
"Open a summary buffer containing the current notmuch article."
@@ -398,18 +409,6 @@
(define-key notmuch-show-mode-map (kbd "C-c C-c")
#'jao-notmuch-goto-message-in-gnus))
#+end_src
-* Delayed messages
- #+BEGIN_SRC emacs-lisp
- ;;; delayed messages (C-cC-j in message buffer)
- (require 'gnus-util)
- (gnus-delay-initialize)
- (setq gnus-delay-default-delay "3h")
- ;;; so that the Date is set when the message is sent, not when it's
- ;;; delayed
- (eval-after-load "message"
- '(setq message-draft-headers (remove 'Date message-draft-headers)))
- #+END_SRC
-* Add-ons
*** icalendar/org
#+begin_src emacs-lisp
(require 'ol-gnus)