aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjason2017-06-29 11:14:56 -0600
committerjason2017-06-29 11:14:56 -0600
commit6d1665fd9f5c05ff939d99d84e9b004e97745964 (patch)
tree43dae1f5a8f33a91fc6c4fcb976eb0d286ebd4d8
parent006992b3750153036d1e3990e7c7153f02729f70 (diff)
downloaddotemacs-6d1665fd9f5c05ff939d99d84e9b004e97745964.tar.gz
dotemacs-6d1665fd9f5c05ff939d99d84e9b004e97745964.zip
Add elfeed
-rw-r--r--config.org32
1 files changed, 32 insertions, 0 deletions
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).
325 :config 325 :config
326 (projectile-global-mode)) 326 (projectile-global-mode))
327#+END_SRC 327#+END_SRC
328** elfeed
329[[https://github.com/skeeto/elfeed][Elfeed]] is an RSS reader for emacs
330
331#+BEGIN_SRC emacs-lisp
332(use-package elfeed
333 :ensure t
334 :bind (("<f9> f" . elfeed))
335 :init
336 (setq elfeed-db-directory "~/Shared/elfeeddb"))
337#+END_SRC
338
339[[https://github.com/remyhonig/elfeed-org][elfeed-org]] allows you to define your list of RSS feeds with an org
340file instead of an elisp list.
341
342#+BEGIN_SRC emacs-lisp
343(use-package elfeed-org
344 :ensure t
345 :init
346 (setq rmh-elfeed-org-files (list "~/Shared/elfeed.org"))
347 :config
348 (elfeed-org))
349#+END_SRC
350
351[[https://github.com/algernon/elfeed-goodies][elfeed-goodies]] adds some ui/ux sugar to the elfeed screen
352
353#+BEGIN_SRC emacs-lisp
354(use-package elfeed-goodies
355 :ensure t
356 :config
357 (elfeed-goodies/setup))
358#+END_SRC
359
328** fill column indicator 360** fill column indicator
329FCI-mode draws a pretty little line on the right hand side indicating where the 361FCI-mode draws a pretty little line on the right hand side indicating where the
330fill column is. 362fill column is.