diff options
author | jao <jao@gnu.org> | 2022-07-18 02:40:52 +0100 |
---|---|---|
committer | jao <jao@gnu.org> | 2022-07-18 02:40:52 +0100 |
commit | 04e10db7793afb1751f07f2b0bd0cba9b8e2fea7 (patch) | |
tree | b12f4f3bd6eeab772971a2f6ed3ce08596df8383 | |
parent | 401552a4658b765410e2aceb3ad867e037934a53 (diff) | |
download | elibs-04e10db7793afb1751f07f2b0bd0cba9b8e2fea7.tar.gz elibs-04e10db7793afb1751f07f2b0bd0cba9b8e2fea7.tar.bz2 |
gnus nits
-rw-r--r-- | custom/jao-custom-gnus.el | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/custom/jao-custom-gnus.el b/custom/jao-custom-gnus.el index 43e6142..31dc806 100644 --- a/custom/jao-custom-gnus.el +++ b/custom/jao-custom-gnus.el @@ -56,7 +56,7 @@ ;;; Looks ;;;; geometry -(defvar jao-gnus-use-three-panes (and window-system (not jao-notmuch-enabled))) +(defvar jao-gnus-use-three-panes (not jao-notmuch-enabled)) (defvar jao-gnus-groups-width 50) (defvar jao-gnus-wide-width 190) @@ -146,8 +146,7 @@ ")"))) (q (concat "mime:message " dirsq " (" qstring ")"))) ;; (message "query is: %s" q) - `("-b" "-t" "-q" ,q))) - ) + `("-b" "-t" "-q" ,q)))) ;; (add-to-list 'gnus-parameters '("^nnselect:.*" (nnselect-rescan . t))) @@ -224,6 +223,12 @@ (total-expire . t) (expiry-wait . 7) (expiry-target . "nnml:bigml.trove")) + ("nnml:\\(bigml\\.alba\\|jao\\.hacking\\)" + (gcc-self . t) + (auto-expire . nil) + (total-expire . nil) + (expiry-target . nil) + (expiry-wait . nil)) ("nnml:bigml\\.trove" (auto-expire . t) (total-expire . t) @@ -304,7 +309,7 @@ ("nnml:bigml.[^ibs]" "W" jao-themes-dimm) ("nnml:jao.[^ist]" "J" jao-themes-dimm) (,(format "^nnml:%s" (regexp-opt feeds)) "F" jao-themes-dimm) - ("^\\(gmane\\|gwene\\)" "G" jao-themes-dimm) + ("^gmane" "G" jao-themes-dimm) ("nnml:local" "l" jao-themes-dimm)))) (defun jao-gnus--unread-counts () @@ -366,8 +371,8 @@ ;;; Groups buffer ;;;; customization ;; (setq gnus-group-line-format " %m%S%p%P:%~(pad-right 35)c %3y %B\n") -(setq gnus-group-line-format " %m%S%p%3y%P%* %~(pad-right 30)C %B\n") -;; (setq gnus-group-line-format " %m%S%p%3y%P%* %~(pad-right 30)G %B\n") +;; (setq gnus-group-line-format " %m%S%p%3y%P%* %~(pad-right 30)C %B\n") +(setq gnus-group-line-format " %m%S%p%3y%P%* %~(pad-right 30)G %B\n") (setq gnus-topic-line-format "%i[ %(%{%n%}%) -- %A ]%v\n" gnus-group-uncollapsed-levels 2 @@ -607,7 +612,8 @@ gnus-visible-headers (concat gnus-visible-headers - "\\|^List-[iI][Dd]:\\|^X-Newsreader:\\|^X-Mailer:\\|User-Agent:\\|X-User-Agent:"))) + "\\|^List-[iI][Dd]:\\|^X-Newsreader:\\|^X-Mailer:" + "\\|^User-Agent:\\|^X-User-Agent:\\|^X-RSS-Feed:"))) ;;;; html and images (setq gnus-button-url 'browse-url-generic |