commit 74c578ea2729e10f592800658a88fe47fe232e0c parent 265c2b7a4fbbb75d04db2581b4a6b62959027695 Author: Cem Keylan <cem@ckyln.com> Date: Fri, 17 Jul 2020 00:43:15 +0300 elfeed: re-enable package Diffstat:
M | init.org | | | 14 | +++++++------- |
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/init.org b/init.org @@ -501,10 +501,11 @@ information when I startup Emacs. I am using elfeed as my RSS viewer, and I configure it through my org agenda file with elfeed-org. -#+BEGIN_SRC emacs-lisp :tangle no +#+BEGIN_SRC emacs-lisp (use-package elfeed :ensure t :after org + :hook (after-init . elfeed-update) :bind ("C-x w" . elfeed)) (use-package elfeed-org @@ -512,12 +513,11 @@ file with elfeed-org. :after (elfeed org) :custom (rmh-elfeed-org-files (list (concat user-emacs-directory "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")) + (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 ** mu4e