First commit.

This commit is contained in:
2022-01-09 21:19:46 +01:00
commit df36844dcc
107 changed files with 6565 additions and 0 deletions

24
lisp/apps/elfeed.el Normal file
View 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