1
0
Fork 0

Compare commits

..

3 commits

Author SHA1 Message Date
239e72e5c9 [oni-elfeeed] Highlight Emacs articles 2023-11-07 16:11:25 -08:00
0cbf4375ca [oni-elfeed] Add Emacs tag to the Planet EmacsLife aggregator feed 2023-11-07 16:10:55 -08:00
eac67fcb13 [oni-elfeed] Add some more RSS feeds
The first two are to keep up with developments for packages that I use. The
second is a website that is interesting.
2023-11-07 16:10:47 -08:00

View file

@ -4,7 +4,7 @@
;; Author: Tom Willemse <tom@ryuslash.org> ;; Author: Tom Willemse <tom@ryuslash.org>
;; Keywords: local ;; Keywords: local
;; Version: 2023.1106.145401 ;; Version: 2023.1107.155953
;; Package-Requires: (elfeed olivetti) ;; Package-Requires: (elfeed olivetti)
;; This program is free software; you can redistribute it and/or modify ;; This program is free software; you can redistribute it and/or modify
@ -78,7 +78,7 @@
"https://programming-journal.org/feed.xml" "https://programming-journal.org/feed.xml"
"https://unzip.dev/rss/" "https://unzip.dev/rss/"
("http://lambda-the-ultimate.org/rss.xml" lisp) ("http://lambda-the-ultimate.org/rss.xml" lisp)
"https://planet.emacslife.com/atom.xml" ("https://planet.emacslife.com/atom.xml" emacs)
"https://www.reddit.com/r/wallpapers/new.xml" "https://www.reddit.com/r/wallpapers/new.xml"
"https://picolisp-explored.com/rss.xml" "https://picolisp-explored.com/rss.xml"
"https://onethingwell.org/rss" "https://onethingwell.org/rss"
@ -86,7 +86,10 @@
"https://bm.babab.nl/feed/atom" "https://bm.babab.nl/feed/atom"
"https://finalspaceends.com/blogs/news.atom" "https://finalspaceends.com/blogs/news.atom"
"https://www.geepawhill.org/weekly/rss" "https://www.geepawhill.org/weekly/rss"
("https://blabbermouth.net/feed" music))) ("https://blabbermouth.net/feed" music)
("https://github.com/roman/golden-ratio.el/commits/master.atom" emacs commits)
("https://github.com/bharadswami/syncthing-status.el/commits/main.atom" emacs commits)
"https://liliputing.com/feed/"))
(add-hook 'elfeed-new-entry-hook (add-hook 'elfeed-new-entry-hook
(elfeed-make-tagger :before "2 weeks ago" (elfeed-make-tagger :before "2 weeks ago"
@ -141,6 +144,7 @@
(add-to-list 'elfeed-search-face-alist '(review :slant italic) t) (add-to-list 'elfeed-search-face-alist '(review :slant italic) t)
(add-to-list 'elfeed-search-face-alist '(favourite :foreground "#f17272") t) (add-to-list 'elfeed-search-face-alist '(favourite :foreground "#f17272") t)
(add-to-list 'elfeed-search-face-alist '(emacs :foreground "#9b7acd") t)
(add-hook 'elfeed-show-mode-hook #'oni-elfeed-enable-olivetti-mode) (add-hook 'elfeed-show-mode-hook #'oni-elfeed-enable-olivetti-mode)