diff options
author | Franck Cuny <fcuny@twitter.com> | 2019-09-14 10:40:39 -0700 |
---|---|---|
committer | Franck Cuny <fcuny@twitter.com> | 2019-09-14 10:40:39 -0700 |
commit | 07f9d3fd870ef86836e221ef13f186ddf6c76efb (patch) | |
tree | 4ba8df4a71b32d0190b34202f9fc11280cf45077 /emacs | |
parent | [org] small improvements to hydra and templates (diff) | |
download | emacs.d-07f9d3fd870ef86836e221ef13f186ddf6c76efb.tar.gz |
[emacs] start using elfeed.
Diffstat (limited to '')
-rw-r--r-- | emacs.d/custom/fcuny-elfeed.el | 13 | ||||
-rw-r--r-- | emacs.d/etc/elfeed.org | 14 | ||||
-rw-r--r-- | emacs.d/init.el | 2 |
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) |