Gnus: Init.

master
Pierre Neidhardt 2020-04-18 10:55:49 +02:00
parent aca180505e
commit e8a0ff014d
2 changed files with 20 additions and 0 deletions

View File

@ -121,6 +121,8 @@
(when (require 'expand-region nil t)
(global-set-key (kbd "C-=") 'er/expand-region))
(with-eval-after-load 'gnus (require 'init-gnus))
(with-eval-after-load 'go-mode (require 'init-go))
;;; Graphviz-dot-mode: The view command is broken but the preview command works

View File

@ -0,0 +1,18 @@
;; Useful to navigate mailist archives.
;; M-x gnus
;; M-x gnus-group-enter-server-mode
;; Subscribe to desired lists and go back to groups.
(with-eval-after-load 'gnus
(setq gnus-select-method '(nnnil)
gnus-expert-user t
gnus-always-read-dribble-file t
gnus-thread-sort-functions '(gnus-thread-sort-by-most-recent-number)
gnus-article-sort-functions gnus-thread-sort-functions
gnus-secondary-select-methods
'((nntp "news.gmane.io")))
(setq nnir-method-default-engines '((nntp . gmane) (nnmaildir . notmuch)))
(add-hook 'gnus-group-mode-hook 'gnus-topic-mode))
(provide 'init-gnus)