25 lines
624 B
EmacsLisp
25 lines
624 B
EmacsLisp
;;; elfeed.el --- Emacs web feed reader. -*- lexical-binding: t; -*-
|
|
;;; Commentary:
|
|
;;; Code:
|
|
|
|
;; https://github.com/skeeto/elfeed
|
|
;; An Emacs web feeds client
|
|
(use-package elfeed
|
|
:ensure t
|
|
:commands elfeed
|
|
:init
|
|
(user/bind-key-global :apps :feed-reader 'elfeed)
|
|
:config
|
|
(setq elfeed-feeds
|
|
'("http://blog.python.org/feeds/posts/default"
|
|
"https://blog.finxter.com/feed"
|
|
"https://planetpython.org/rss20.xml"
|
|
"http://www.reddit.com/r/emacs/.rss"
|
|
"https://sachachua.com/blog/category/emacs-news/feed"
|
|
"http://linuxfr.org/journaux.atom"
|
|
)))
|
|
|
|
(provide 'apps/elfeed)
|
|
|
|
;;; elfeed.el ends here
|