diff options
author | JSDurand <mmemmew@gmail.com> | 2022-01-26 02:02:41 +0800 |
---|---|---|
committer | JSDurand <mmemmew@gmail.com> | 2022-01-26 02:02:41 +0800 |
commit | 60d6f0f622b13adc43db4b386d735371070a4ead (patch) | |
tree | 9397ea6335306dbd8beeed275ecedd445d76367c | |
parent | 3f70a8d1fbc048bf88abd996547d19a15a0006e7 (diff) |
gnus & init: setup delay & no avoid mouse
* gnus-conf.el: call #'gnus-delay-initialize to set up checking
delayed mails to send each time we get new news.
* init.el (display-mouse-p): After some time using this, I think I
don't need to avoid the mouse.
-rw-r--r-- | gnus-conf.el | 4 | ||||
-rw-r--r-- | init.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gnus-conf.el b/gnus-conf.el index 043836c..c0eae08 100644 --- a/gnus-conf.el +++ b/gnus-conf.el @@ -621,6 +621,10 @@ ARGS is the list of arguments passed to FN." (setq gnus-summary-thread-gathering-function #'gnus-gather-threads-by-subject) +;;; delayed sending + +(gnus-delay-initialize) + ;;; disable auto-save for newrc file (defun durand-disable-auto-save-for-newsrc-ad (&rest _args) @@ -383,7 +383,7 @@ no effect." ;;; Cat and mouse -(cond ((display-mouse-p) (mouse-avoidance-mode 'cat-and-mouse))) +(cond ((display-mouse-p) (mouse-avoidance-mode 'none))) ;;; Bookmark conf |