diff options
| author | fpi | 2020-04-09 16:43:22 +0200 | 
|---|---|---|
| committer | fpi | 2020-04-09 16:43:22 +0200 | 
| commit | 25d1d06b19bb313417aa2c175e20b5a06329616f (patch) | |
| tree | bb68ea2723b8b01f6ea7fd0d227ac2398f7bddd0 | |
| parent | Add some bibtex settings (diff) | |
| parent | Disable accidental topic indentation with TAB (diff) | |
Merge branch 'gnus+' into emacs
| -rw-r--r-- | gnus.org | 11 | 
1 files changed, 10 insertions, 1 deletions
@@ -50,7 +50,10 @@ Save sent mails in my imap folder  (setq gnus-message-archive-method "dummy string")  (setq gnus-message-archive-group private/imap-sent-folder)  #+end_src - +Disable indenting a topic. I always do it by accident. +#+begin_src emacs-lisp +(define-key gnus-topic-mode-map (kbd "<tab>") nil) +#+end_src  ** Adaptive scoring  See [[info:gnus#Adaptive Scoring][info:gnus#Adaptive Scoring]].  #+begin_src emacs-lisp @@ -95,6 +98,12 @@ See [[info:gnus#Window Layout][info:gnus#Window Layout]].  (setq gnus-summary-line-format "%U%R%z%I%(%[ %d : %-23,23f %]%) %s  ")  #+end_src +** nnreddit +#+begin_src emacs-lisp +(use-package nnreddit +  :ensure t) +(add-to-list 'gnus-secondary-select-methods '(nnreddit "")) +#+end_src  ** Demon  Background fetching for gnus. See the manual and [[https://www.emacswiki.org/emacs/GnusDemon][emacswiki]].  #+begin_src emacs-lisp  | 
