I showed you my source code, pls respond
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

1.6 KiB

Elfeed

Setup a news feed inside of Emacs using elfeed1, an Emacs web feeds client.

Setup

  • Add the feed for my website2 to make sure the RSS feeds are updating correctly

  • Add some subreddits, mostly about linux, emacs and org-mode

(use-package elfeed
  :commands (elfeed elfeed-update)
  :custom (elfeed-feeds (quote
                          (("https://hexdsl.co.uk/rss.xml")
                           ("https://lukesmith.xyz/rss.xml")
                           ("https://friendo.monster/rss.xml")
                           ("https://chrishayward.xyz/index.xml")
                           ("https://protesilaos.com/codelog.xml")))))

Goodies

Extend elfeed1 with the elfeed-goodies3 package.

(use-package elfeed-goodies
  :after elfeed
  :custom (elfeed-goodies/entry-pane-size 0.5)
  :config (elfeed-goodies/setup))

Shortcuts

Configure elfeed1 keybindings behind SPC l:

  • Open with l

  • Update with u

(dotfiles/leader
  "l" '(:ignore t :which-key "Elfeed")
  "ll" '(elfeed :which-key "Open")
  "lu" '(elfeed-update :which-key "Update"))

Footnotes