emacs.d

bloated emacs configuration
git clone git://git.ckyln.com/~cem/emacs.d.git
Log | Files | Refs | README

commit 8ef7bf64c1fa764c38ddf77a219010f61c2d2c06
parent baea4ffb0437a19434585b407ca1c48bcbc8a32b
Author: Cem Keylan <cem@ckyln.com>
Date:   Mon,  4 May 2020 11:13:04 +0300

emacs: add elfeed

Diffstat:
Minit.org | 20++++++++++++++++++++
1 file changed, 20 insertions(+), 0 deletions(-)

diff --git a/init.org b/init.org @@ -534,6 +534,26 @@ simple, straightforward interface. (projects . 5))) :config (dashboard-setup-startup-hook)) #+END_SRC +** elfeed +I am using elfeed as my RSS viewer, and I configure it through my org +agenda file with elfeed-org + +#+BEGIN_SRC emacs-lisp + (use-package elfeed + :straight t + :bind ("C-x w" . elfeed)) + + (use-package elfeed-org + :straight t + :custom (rmh-elfeed-org-files (list "~/.emacs.d/feed.org")) + :config + (elfeed-org)) + + (cheatsheet-add-group 'elfeed + '(:key "C-x w" :description "Open elfeed buffer") + '(:key "gR" :description "Refresh feeds") + '(:key "s" :description "Sort feed")) +#+END_SRC ** Extras These don't really deserve their own sections, but I prefer to use them.