summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYann Herklotz <git@yannherklotz.com>2022-12-27 18:50:58 +0000
committerYann Herklotz <git@yannherklotz.com>2022-12-27 18:50:58 +0000
commit9ad3946cb3f6a746198088d6cfb198e7c3e3bf96 (patch)
treeafd11859cb1b38b7ccbef9b19f5b7eda44aa467c
parente2d1dae4573e759980fd017ab492c6ec711b1535 (diff)
downloadymh-emacs-9ad3946cb3f6a746198088d6cfb198e7c3e3bf96.tar.gz
ymh-emacs-9ad3946cb3f6a746198088d6cfb198e7c3e3bf96.zip
Remove elfeed-org as a dependency
-rw-r--r--init.el30
1 files changed, 22 insertions, 8 deletions
diff --git a/init.el b/init.el
index 6349a8d..ffa4aa2 100644
--- a/init.el
+++ b/init.el
@@ -809,14 +809,28 @@ https://yannherklotz.com"))
(use-package elfeed
:ensure t
:init
- (setq-default elfeed-search-filter "@1-month-ago +unread "))
-
-(use-package elfeed-org
- :ensure t
- :init
- (setq rmh-elfeed-org-files '("~/Dropbox/org/elfeed.org"))
- :config
- (elfeed-org))
+ (setq-default elfeed-search-filter "@1-month-ago +unread ")
+ (setq elfeed-feeds
+ '(("https://archlinux.org/feeds/news/" linux news)
+ ("https://haskellweekly.news/haskell-weekly.atom" haskell news) ; no autotagging
+ ("https://planet.emacsen.org/atom.xml" emacs news)
+ ("https://feeds.feedburner.com/XahsEmacsBlog" blog emacs)
+ ("https://pragmaticemacs.com/feed" blog emacs)
+ ("https://sachachua.com/blog/feed" blog emacs)
+ ("http://comonad.com/reader/feed/" blog haskell)
+ ("https://blog.sumtypeofway.com/rss/" blog haskell)
+ ("https://drewdevault.com/blog/index.xml" blog opensource)
+ ("https://citizen428.net/index.xml" blog opensource)
+ ("https://dataswamp.org/~solene/rss.xml" blog opensource)
+ ("https://yannherklotz.com/index.xml" blog yann)
+ ("https://www.math.columbia.edu/~woit/wordpress/?feed=atom" blog math)
+ ("https://terrytao.wordpress.com/feed/" blog math)
+ ("https://mathbabe.org/feed/" blog math)
+ ("https://lamington.wordpress.com/feed/atom/" blog math)
+ ("https://totallydisconnected.wordpress.com/feed/atom/" blog math)
+ ("https://blogs.ethz.ch/kowalski/category/blogroll/feed/" blog math)
+ ("https://sbseminar.wordpress.com/feed/" blog math)
+ ("https://krystalguo.com/?feed=rss2" blog math))))
(setq gc-cons-threshold (* 1024 1024 10))