Skip to content

Commit 7a3c3ad

Browse files
committed
feat(elfeed): Add support for elfeed
1 parent 56d9edb commit 7a3c3ad

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

lisp/jcs-package.el

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@
100100
eldoc-meta-net
101101
electric-cursor
102102
electric-indent-sexp
103+
elfeed
103104
elisp-def
104105
elisp-demos
105106
elixir-mode

lisp/jcs-plugin.el

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -236,6 +236,7 @@
236236
'("[*]httpd[*]")
237237
'("[*]helpful" "[*]suggest[*]")
238238
'("[*]ert[*]" "[*]indent-lint")
239+
'("[*]elfeed-")
239240
'("magit[-]*[[:ascii:]]*[:]") ; From `magit'
240241
'("[*]Most used words[*]")
241242
'("[*]Test SHA[*]")
@@ -299,6 +300,18 @@
299300
:init
300301
(setq electric-indent-sexp-auto-chars t))
301302

303+
(leaf elfeed
304+
:hook (elfeed-search-mode-hook . buffer-wrap-mode)
305+
:init
306+
(setq elfeed-db-directory (concat user-emacs-directory ".elfeed")
307+
elfeed-show-entry-switch #'pop-to-buffer
308+
elfeed-show-entry-delete #'delete-window
309+
elfeed-feeds '(("https://planet.emacslife.com/atom.xml" planet emacslife)
310+
("http://www.masteringemacs.org/feed/" mastering)
311+
("https://oremacs.com/atom.xml" oremacs)
312+
("https://pinecast.com/feed/emacscast" emacscast)
313+
("https://emacstil.com/feed.xml" Emacs TIL))))
314+
302315
(leaf emojify
303316
:init
304317
(setq emojify-emoji-styles '(github)

0 commit comments

Comments
 (0)