From 6d1665fd9f5c05ff939d99d84e9b004e97745964 Mon Sep 17 00:00:00 2001 From: jason Date: Thu, 29 Jun 2017 11:14:56 -0600 Subject: Add elfeed --- config.org | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/config.org b/config.org index 51b597c..ac37638 100644 --- a/config.org +++ b/config.org @@ -325,6 +325,38 @@ that are in the current project (defined by a .git directory). :config (projectile-global-mode)) #+END_SRC +** elfeed +[[https://github.com/skeeto/elfeed][Elfeed]] is an RSS reader for emacs + +#+BEGIN_SRC emacs-lisp +(use-package elfeed + :ensure t + :bind ((" f" . elfeed)) + :init + (setq elfeed-db-directory "~/Shared/elfeeddb")) +#+END_SRC + +[[https://github.com/remyhonig/elfeed-org][elfeed-org]] allows you to define your list of RSS feeds with an org +file instead of an elisp list. + +#+BEGIN_SRC emacs-lisp +(use-package elfeed-org + :ensure t + :init + (setq rmh-elfeed-org-files (list "~/Shared/elfeed.org")) + :config + (elfeed-org)) +#+END_SRC + +[[https://github.com/algernon/elfeed-goodies][elfeed-goodies]] adds some ui/ux sugar to the elfeed screen + +#+BEGIN_SRC emacs-lisp +(use-package elfeed-goodies + :ensure t + :config + (elfeed-goodies/setup)) +#+END_SRC + ** fill column indicator FCI-mode draws a pretty little line on the right hand side indicating where the fill column is. -- cgit v1.2.1