emacs.d/bundle/bundle--news.el

88 lines
4.6 KiB
EmacsLisp
Raw Normal View History

2021-12-15 17:51:04 +01:00
(use-package eww
2022-05-06 19:31:15 +02:00
:defer t
2021-12-15 17:51:04 +01:00
:init
(add-hook 'eww-after-render-hook #'shrface-mode)
:config
(require 'shrface)
(setq shr-use-colors nil
shr-use-fonts nil
shr-cookie-policy nil
browse-url-browser-function (quote eww-browse-url)))
(use-package elfeed
:bind ("C-x w" . elfeed)
:init
(setq elfeed-feeds
'(("http://nullprogram.com/feed/" lisp blog)
2022-05-16 14:24:38 +02:00
("https://m-x-erlangen.gitlab.io/atom.xml" lisp meetup)
2022-05-15 22:27:31 +02:00
("https://takeonrules.com/index.atom" lisp emacs blog)
2021-12-22 10:36:59 +01:00
("https://netzpolitik.org/feed/" netz politik news)
2022-05-11 16:18:03 +02:00
("https://lisp-journey.gitlab.io/index.xml" lisp blog)
2022-05-12 09:20:06 +02:00
("https://www.guyrutenberg.com/feed/" linux blog)
2021-12-20 09:46:08 +01:00
("https://www.raspberrypi.com/news/feed/" blog pi os)
2021-12-15 17:51:04 +01:00
("https://planet.emacslife.com/atom.xml" emacs)
2022-05-08 09:37:49 +02:00
("https://planet.lisp.org/rss20.xml" lisp blogs)
2021-12-15 17:51:04 +01:00
("https://emacsredux.com/atom.xml" emacs blog)
2022-04-29 14:41:13 +02:00
("https://yiming.dev/rss.xml" coding emacs lisp blog)
2021-12-15 17:51:04 +01:00
("https://endlessparentheses.com/atom.xml" emacs elisp blog)
("https://blog.mozilla.org/en/feed/" browser web)
("https://blog.chromium.org/feeds/posts/default" browser web)
("https://hacks.mozilla.org/feed/" browser web)
2022-06-09 10:12:48 +02:00
("https://www.interaction-design.org/rss/site_news.xml" ux design)
("https://www.nngroup.com/feed/rss/" ux design)
("https://uxpamagazine.org/?feed=full" ux design)
("https://feedpress.me/UXmatters" ux design)
("https://uxmovement.com/feed" ux design)
("https://www.uxbeginner.com/feed/" ux design)
("https://jeffgothelf.com/feed/" lean ux design blog)
2021-12-15 17:51:04 +01:00
("https://www.colinmclear.net/posts/index.xml" research emacs blog)
("https://en.wikipedia.org/w/api.php?action=featuredfeed&feed=onthisday&feedformat=atom" general)
2022-06-09 10:12:48 +02:00
("https://uxwritinghub.com/feed/" ux writing blog)
2021-12-15 17:51:04 +01:00
("https://www.philnewton.net/blog/feed/" emacs blog)
("https://emacsredux.com/atom.xml" emacs blog)
("https://marcus3santos.github.io/index.xml" emacs blog)
("https://pragdave.me/feed.xml" coding blog)
("https://mailbox.org/share/feed-de-mailbox.xml" email mailbox web)
2022-02-08 12:52:31 +01:00
("https://feeds.feedburner.com/GoogleWebFonts" fonts blog google)
2022-06-09 10:12:48 +02:00
("https://uxcontent.com/feed/" ux writing blog)
("https://userlutions.com/feed/" ux usability blog)
2022-02-25 16:01:35 +01:00
("https://nostarch.com/feeds/newbooks.xml" books)
2022-04-24 12:32:05 +02:00
("https://metaebene.me/feed/m4a/" podcast)
2022-07-18 18:23:21 +02:00
("https://www.strategyzer.com/blog/rss.xml" business blog strategyzer)
2022-07-20 13:32:00 +02:00
("https://www.neondystopia.com/feed/" cyberpunk blog)
2022-07-22 18:13:04 +02:00
("https://www.raspberrypi.org/blog/feed/" raspberry blog)
("https://www.raspberrypi.com/news/feed/" raspberry blog)
("https://www.blog.berrybase.de/feed/" raspberry blog)
2022-08-01 17:48:15 +02:00
("https://krebsonsecurity.com/feed/" security blog)
2022-07-26 15:43:48 +02:00
("https://www.schneier.com/feed/atom/" security blog)
2022-07-27 08:35:29 +02:00
("https://www.greenpeace.org/usa/rsslatest.xml" nature climate blog)
2022-06-09 10:12:48 +02:00
("https://blog.rust-lang.org/feed.xml" rust blog news)
2022-08-11 21:03:19 +02:00
("https://twobithistory.org/feed.xml" history blog coding)
2022-08-24 19:35:13 +02:00
("http://planet.clojure.in/atom.xml" clojure news hacking jvm java)
("https://taonaw.com/index.xml" emacs blog)
2022-08-25 18:09:23 +02:00
("https://www.audiotranskription.de/feed/" ux blog qda)
2022-08-11 14:25:03 +02:00
("https://www.phoronix.com/rss.php" linux news blog)
2022-09-05 08:33:49 +02:00
("https://en.wikinews.org/w/index.php?title=Special:NewsFeed&feed=atom&categories=Published&notcategories=No%20publish%7CArchived%7CAutoArchived%7Cdisputed&namespace=0&count=30&hourcount=124&ordermethod=categoryadd&stablepages=only" news)
2022-09-23 08:30:25 +02:00
("https://gwern.substack.com/feed" blog technology personal)
2022-09-26 08:49:23 +02:00
("https://www.heise.de/thema/Linux-und-Open-Source?view=atom" linux news)
2022-08-28 22:13:49 +02:00
("http://planet.sbcl.org/rss20.xml" sbcl lisp)
2022-04-24 12:58:34 +02:00
)
2022-04-29 14:41:13 +02:00
elfeed-search-filter "@4-day-ago +unread"))
2021-12-24 16:21:16 +01:00
(use-package gnus
:ensure nil
:hook (gnus-summary-prepare . gnus-summary-sort-by-most-recent-date)
:custom
(user-full-name "Marcus Kammer")
2021-12-28 11:44:24 +01:00
(gnus-inhibit-startup-message t)
(gnus-check-new-newsgroups nil)
2022-05-07 19:37:20 +02:00
(gnus-select-method '(nntp "news.individual.de"
2021-12-24 16:21:16 +01:00
(nntp-open-connection-function nntp-open-ssl-stream)
2022-05-07 19:37:20 +02:00
(nntp-port-number 563)))
2022-05-20 15:47:13 +02:00
:config
(add-to-list 'gnus-secondary-select-methods
'(nnimap "mailbox"
(nnimap-address "imap.mailbox.org")
(nnimap-server-port 143)
(nnimap-stream starttls))))