1
0
mirror of https://github.com/alrayyes/dotfiles/ synced 2023-11-14 15:56:30 +00:00

Added elfeed goodies

This commit is contained in:
Ryan Kes 2019-12-11 18:52:19 +01:00
parent 3705855e02
commit 7fe1e8c423
2 changed files with 9 additions and 3 deletions

View File

@ -162,8 +162,7 @@ Emacs frontend for weather web service [[http://wttr.in/][wttr.in]]
(setq wttrin-default-cities '("Amsterdam", "Volendam"))
#+END_SRC
* [[https://github.com/skeeto/elfeed][Elfeed]]
Use elfeed with [[https://github.com/fasheng/elfeed-protocol][elfeed-protocol]] to read feeds.
** elfeed and [[https://github.com/fasheng/elfeed-protocol][elfeed-protocol]] to read feeds.
#+BEGIN_SRC emacs-lisp
(use-package! elfeed
:config
@ -181,10 +180,16 @@ Use elfeed with [[https://github.com/fasheng/elfeed-protocol][elfeed-protocol]]
:password (password-store-get "emacs/rss")
:autotags elfeed-protocol-tags)))))
#+END_SRC
** [[https://github.com/remyhonig/elfeed-org][elfeed-org]]
#+BEGIN_SRC emacs-lisp
(use-package! elfeed-org
:config
(setq rmh-elfeed-org-files '("~/Documents/org/elfeed.org"))
)
#+END_SRC
** [[https://github.com/algernon/elfeed-goodies][elfeed-goodies]]
#+BEGIN_SRC emacs-lisp
(use-package! elfeed-goodies
:config
(elfeed-goodies/setup))
#+END_SRC

View File

@ -8,3 +8,4 @@
(package! counsel-spotify)
(package! wttrin)
(package! elfeed-protocol)
(package! elfeed-goodies)