diff options
author | JSDurand <mmemmew@gmail.com> | 2022-04-12 15:36:00 +0800 |
---|---|---|
committer | JSDurand <mmemmew@gmail.com> | 2022-04-12 15:36:00 +0800 |
commit | a0a4df14a231ef705b1f706b0d6a3ef4eaabd479 (patch) | |
tree | b079f6d2a6768d4c7402096325a464a6e2bf65a5 /elfeed-conf.el | |
parent | 0e834171fe8247a62582a5d7f59cfa38cb581c1f (diff) |
elfeed: clean up the feeds a little
* elfeed-conf.el (elfeed-feeds): Re-organize the feeds.
(elfeed-search-filter): Set the default filter to include those read
entries as well. I now like this way of viewing feeds.
Diffstat (limited to 'elfeed-conf.el')
-rw-r--r-- | elfeed-conf.el | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/elfeed-conf.el b/elfeed-conf.el index 40fe8f7..a683931 100644 --- a/elfeed-conf.el +++ b/elfeed-conf.el @@ -30,12 +30,12 @@ (setq elfeed-feeds (list (list "https://blog.tanyakhovanova.com/feed/" 'math 'khovanova 'blog) - (list "https://wiwi.video/feeds/videos.atom?sort=-publishedAt" - 'wiwi) - (list "https://wiwikuan.com/index.xml" - 'wiwi 'blog) + ;; (list "https://wiwi.video/feeds/videos.atom?sort=-publishedAt" + ;; 'wiwi) + ;; (list "https://wiwikuan.com/index.xml" + ;; 'wiwi 'blog) (list "https://protesilaos.com/codelog.xml" - 'prot 'code) + 'prot 'code 'emacs) (list "https://protesilaos.com/news.xml" 'prot 'news) (list "https://protesilaos.com/politics.xml" @@ -50,16 +50,22 @@ 'lukesmith 'peertube) (list "https://www.youtube.com/feeds/videos.xml?channel_id=UC2eYFnH61tmytImy1mTYvhA" 'lukesmith 'youtube) - (list "https://www.youtube.com/feeds/videos.xml?channel_id=UCiWXd0nmBjlKROwzMyPV-Nw" - 'zhichi 'youtube) + ;; (list "https://www.youtube.com/feeds/videos.xml?channel_id=UCiWXd0nmBjlKROwzMyPV-Nw" + ;; 'zhichi 'youtube) (list "https://blog.rust-lang.org/feed.xml" 'rust 'blog) + (list "https://sachachua.com/blog/feed/" + 'sacha 'emacs 'blog) ;; (list "https://www.youtube.com/feeds/videos.xml?channel_id=UCPtfAE6_21oqjO7Bh2bJcog" ;; 'teukkaniikka 'arduino) )) (define-key elfeed-search-mode-map (vector #x78) 'elfeed-search-exit) +;;; Default search filter + +(setq elfeed-search-filter "@6-months-ago +emacs") + ;; I still prefer the defaults. (setq elfeed-show-entry-switch #'switch-to-buffer) |