From 07f9d3fd870ef86836e221ef13f186ddf6c76efb Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Sat, 14 Sep 2019 10:40:39 -0700 Subject: [emacs] start using elfeed. --- emacs.d/custom/fcuny-elfeed.el | 13 +++++++++++++ emacs.d/etc/elfeed.org | 14 ++++++++++++++ emacs.d/init.el | 2 ++ 3 files changed, 29 insertions(+) create mode 100644 emacs.d/custom/fcuny-elfeed.el create mode 100644 emacs.d/etc/elfeed.org diff --git a/emacs.d/custom/fcuny-elfeed.el b/emacs.d/custom/fcuny-elfeed.el new file mode 100644 index 0000000..1c35b41 --- /dev/null +++ b/emacs.d/custom/fcuny-elfeed.el @@ -0,0 +1,13 @@ +(require 'fcuny-vars) + +(use-package elfeed + :ensure t) + +(use-package elfeed-org + :ensure t + :after (elfeed) + :custom + (rmh-elfeed-org-files (list (concat fcuny/path-emacs-etc "/elfeed.org"))) + (elfeed-search-filter "@1-month-ago +unread ")) + +(provide 'fcuny-elfeed) diff --git a/emacs.d/etc/elfeed.org b/emacs.d/etc/elfeed.org new file mode 100644 index 0000000..51f1b10 --- /dev/null +++ b/emacs.d/etc/elfeed.org @@ -0,0 +1,14 @@ +#+TITLE: list of feeds +#+FILETAGS: elfeed + +* blogs +** entry-title: people :people: +*** [[https://apenwarr.ca/log/rss.php][apenwarr]] +*** [[https://crawshaw.io/atom.xml][david crawshaw]] +*** [[https://nullprogram.com/feed/][chris wellons]] +*** [[https://vincent.bernat.ch/en/blog/atom.xml][vincent bernat]] +*** [[https://www.tbray.org/ongoing/ongoing.atom][tim bray]] +** entry-title: emacs :emacs: +*** [[https://sachachua.com/blog/category/emacs/feed][sacha]] +* aggregators +** [[https://lobste.rs/rss][lobste.rs]] diff --git a/emacs.d/init.el b/emacs.d/init.el index fb22550..4c3cd59 100644 --- a/emacs.d/init.el +++ b/emacs.d/init.el @@ -49,4 +49,6 @@ (require 'fcuny-eshell) +(require 'fcuny-elfeed) + (require 'fcuny-twitter) -- cgit 1.4.1