From a3faeaaf971cd4d6653e9dac416f176d8d58e3f5 Mon Sep 17 00:00:00 2001 From: Case Duckworth Date: Tue, 27 Apr 2021 11:33:48 -0500 Subject: Fix comments --- gnus.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnus.el') diff --git a/gnus.el b/gnus.el index 185849b..994e5a1 100644 --- a/gnus.el +++ b/gnus.el @@ -47,9 +47,9 @@ (setq gnus-summary-line-format (concat "%0{%U%R%z%}" - "%3{│%}" "%1{%d%}" "%3{│%}" ;; date + "%3{│%}" "%1{%d%}" "%3{│%}" ; date " " - "%4{%-20,20f%}" ;; name + "%4{%-20,20f%}" ; name " " "%3{│%}" " " -- cgit 1.4.1-21-gabe81 From 5adbcfab5d45791fe4e0f8cf84f9d13d172251fc Mon Sep 17 00:00:00 2001 From: Case Duckworth Date: Tue, 27 Apr 2021 11:34:04 -0500 Subject: Add acdw/reading-mode to read gnus articles --- gnus.el | 1 + 1 file changed, 1 insertion(+) (limited to 'gnus.el') diff --git a/gnus.el b/gnus.el index 994e5a1..6d1c21a 100644 --- a/gnus.el +++ b/gnus.el @@ -59,6 +59,7 @@ (setq gnus-summary-display-arrow t) (add-hook 'gnus-group-mode-hook #'hl-line-mode) +(add-hook 'gnus-article-mode-hook #'acdw/reading-mode) ;;; Sending mail (setq send-mail-function #'smtpmail-send-it -- cgit 1.4.1-21-gabe81 From d466b613eafcd58d188a667abbb6a91e5744eb99 Mon Sep 17 00:00:00 2001 From: Case Duckworth Date: Tue, 27 Apr 2021 11:34:29 -0500 Subject: Change a couple gnus settings --- gnus.el | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'gnus.el') diff --git a/gnus.el b/gnus.el index 6d1c21a..fa20133 100644 --- a/gnus.el +++ b/gnus.el @@ -27,6 +27,11 @@ (nnir-search-engine imap)) (nntp "news.tilde.club"))) +;;; Gnus behavior options +(setq gnus-gcc-mark-as-read t + message-signature (or (file-exists-p message-signature-file) + "~ acdw")) + ;;; Gnus UI options (setq gnus-thread-sort-functions '(gnus-thread-sort-by-most-recent-date (not gnus-thread-sort-by-number)) -- cgit 1.4.1-21-gabe81