First commit.
This commit is contained in:
24
lisp/apps/elfeed.el
Normal file
24
lisp/apps/elfeed.el
Normal file
@@ -0,0 +1,24 @@
|
||||
;;; 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
|
Reference in New Issue
Block a user