Skip to content

Commit

Permalink
feat(rss): add support for extra protocols via elfeed-protocol
Browse files Browse the repository at this point in the history
  • Loading branch information
abougouffa committed Nov 17, 2024
1 parent e14faa4 commit 138d889
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion modules/me-rss.el
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
:config
;; Hide the annoying index file form recent files
(+ignore-root elfeed-db-directory elfeed-enclosure-default-dir)
(push (concat elfeed-db-directory "index") +first-file-hook-ignore-list)
(add-to-list '+first-file-hook-ignore-list (concat elfeed-db-directory "index"))

(defun +elfeed-download-image ()
"Download the image at point."
Expand All @@ -39,6 +39,13 @@
(url-copy-file url (expand-file-name (url-file-nondirectory url) (+directory-ensure +elfeed-images-dir)))))))


;; Extra `elfeed' protocols to add support for Fever, NewsBlur, Nextcloud/ownCloud News and Tiny Tiny RSS
(use-package elfeed-protocol
:straight t
:after elfeed
(elfeed-protocol-enable))


(provide 'me-rss)

;;; me-rss.el ends here

0 comments on commit 138d889

Please sign in to comment.