summary refs log tree commit diff
path: root/emacs.d
diff options
context:
space:
mode:
Diffstat (limited to 'emacs.d')
-rw-r--r--emacs.d/custom/fcuny-elfeed.el13
-rw-r--r--emacs.d/etc/elfeed.org14
-rw-r--r--emacs.d/init.el2
3 files changed, 29 insertions, 0 deletions
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)