init-gnus.el 639 B

12345678910111213141516171819
  1. ;; Useful to navigate mailist archives.
  2. ;; M-x gnus
  3. ;; M-x gnus-group-enter-server-mode
  4. ;; Subscribe to desired lists and go back to groups.
  5. (with-eval-after-load 'gnus
  6. (setq gnus-select-method '(nnnil)
  7. gnus-expert-user t
  8. gnus-always-read-dribble-file t
  9. gnus-thread-sort-functions '(gnus-thread-sort-by-most-recent-number)
  10. gnus-article-sort-functions gnus-thread-sort-functions
  11. gnus-secondary-select-methods
  12. '((nntp "news.gmane.io")))
  13. (setq nnir-method-default-engines '((nntp . gmane) (nnmaildir . notmuch)))
  14. (add-hook 'gnus-group-mode-hook 'gnus-topic-mode))
  15. (provide 'init-gnus)