Skip to content

Instantly share code, notes, and snippets.

View kubajecminek's full-sized avatar

Jakub Ječmínek kubajecminek

View GitHub Profile
@kubajecminek
kubajecminek / .gnus.el
Last active February 23, 2024 12:32
Gnus RSS config
(setq my-feeds '(("Richard Stallman" "https://stallman.org/rss/rss.xml" "Chief GNUisance of the GNU Project")
;; Define other feeds right here (title url description)
))
;; This function mimics `gnus-group-make-rss-group' behaviour
(defun my-subscribe-rss-feeds (feeds)
(require 'nnrss)
(dolist (feed feeds)
(let* ((title (nth 0 feed))
(href (nth 1 feed))