From 19897f6196e627693b6fff2356539e07040214c8 Mon Sep 17 00:00:00 2001 From: Aaron Bieber Date: Thu, 22 Aug 2024 10:36:13 -0600 Subject: [PATCH] configs/emacs: fire up gnus --- configs/emacs.org | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) diff --git a/configs/emacs.org b/configs/emacs.org index 5d323b7..22cc2aa 100644 --- a/configs/emacs.org +++ b/configs/emacs.org @@ -99,7 +99,7 @@ Switch various defaults to be more comfortable for myself. ) auto-mode-alist)) (setq auth-sources - '((:source "~/.netrc"))) + '("/run/secrets/netrc")) #+end_src Use spelling and auto-fill when we are in text mode. @@ -636,6 +636,32 @@ Custom agenda commands for various things. (require 'org-roam-protocol)) #+end_src +* gnus + +[2024-08-22 Thu] Might need to switch go gnus. mu4e has been not showing new +mail for some things and having to sync state between two sources is a pita. + +#+begin_src emacs-lisp + (setq gnus-fetch-old-headers t + gnus-select-method '(nnimap "imap.fastmail.com") + gnus-secondary-select-methods '((nntp "news.gwene.org")) + gnus-sum-thread-tree-false-root "" + gnus-sum-thread-tree-indent " " + gnus-sum-thread-tree-leaf-with-other "├► " + gnus-sum-thread-tree-root "" + gnus-sum-thread-tree-single-leaf "╰► " + gnus-sum-thread-tree-vertical "│" + gnus-summary-line-format "%U%R%z %(%&user-date>; %-15,15f %B%s%)\n" + gnus-summary-thread-gathering-function 'gnus-gather-threads-by-references + gnus-thread-sort-functions '(gnus-thread-sort-by-date) + gnus-user-date-format-alist '((t . "%Y-%m-%d %H:%M"))) + + (with-eval-after-load 'gnus + (setq gnus-select-method '(nnimap "imap.fastmail.com") + gnus-secondary-select-methods '((nntp "news.gwene.org")))) + +#+end_src + * mu4e ~mu~ has been the best mail client for me on emacs.