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.4 KiB

Feeds

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://chrishayward.xyz/index.xml")
                           ("https://hexdsl.co.uk/rss.xml")
                           ("https://lukesmith.xyz/rss.xml")
                           ("https://reddit.com/r/emacs.rss")
                           ("https://reddit.com/r/orgmode.rss")
                           ("https://reddit.com/r/emacsporn.rss")))))

Shortcuts

Configure elfeed 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