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.
|
|
#+TITLE: Feeds #+AUTHOR: Christopher James Hayward #+EMAIL: chris@chrishayward.xyz
#+PROPERTY: header-args:emacs-lisp :tangle feeds.el :comments org #+PROPERTY: header-args:shell :tangle no #+PROPERTY: header-args :results silent :eval no-export :comments org
Setup a news feed inside of Emacs using ~elfeed~[fn:1], an Emacs web feeds client.
* Setup
+ Add the feed for my [[file:website.org][Website]][fn:2] to make sure the RSS feeds are updating correctly + Add some subreddits, mostly about ~emacs~ and ~org-mode~.
#+begin_src emacs-lisp (use-package elfeed :commands (elfeed elfeed-update) :custom (elfeed-feeds (quote (("https://chrishayward.xyz/index.xml") ("https://reddit.com/r/emacs.rss") ("https://reddit.com/r/orgmode.rss") ("https://reddit.com/r/emacsporn.rss"))))) #+end_src
* Shortcuts
Configure ~elfeed~ keybindings behind =SPC l=:
+ Open with =l= + Update with =u=
#+begin_src emacs-lisp (dotfiles/leader "l" '(:ignore t :which-key "Elfeed") "ll" '(elfeed :which-key "Open") "lu" '(elfeed-update :which-key "Update")) #+end_src
* Footnotes
[fn:1] https://github.com/skeeto/elfeed
[fn:2] https://chrishayward.xyz/index.xml
|