emacs.d/bundle/bundle--news.el
2021-12-31 21:56:20 +01:00

65 lines
3.4 KiB
EmacsLisp

(use-package eww
: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)
("https://www.heise.de/rss/heise-Rubrik-Netzpolitik-atom.xml" news netz politik)
("https://netzpolitik.org/feed/" netz politik news)
("https://logbuch-netzpolitik.de/feed/m4a" netz politik podcast meta)
("https://c-for-dummies.com/blog/?feed=rss2" cc blog)
("https://www.raspberrypi.com/news/feed/" blog pi os)
("https://planet.emacslife.com/atom.xml" emacs)
("https://drewdevault.com/blog/index.xml" coding golang blog)
("https://emacsredux.com/atom.xml" emacs blog)
("https://endlessparentheses.com/atom.xml" emacs elisp blog)
("https://norvig.com/rss-feed.xml" coding lisp blog)
("https://blog.mozilla.org/en/feed/" browser web)
("https://blog.codinghorror.com/rss/" coding blog)
("https://blog.chromium.org/feeds/posts/default" browser web)
("https://hacks.mozilla.org/feed/" browser web)
("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)
("https://www.colinmclear.net/posts/index.xml" research emacs blog)
("https://en.wikipedia.org/w/api.php?action=featuredfeed&feed=onthisday&feedformat=atom" general)
("https://uxwritinghub.com/feed/" ux writing blog)
("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://yiming.dev/rss.xml" coding emacs lisp blog)
("https://feeds.feedburner.com/PythonInsider" security bugs python news)
("https://mailbox.org/share/feed-de-mailbox.xml" email mailbox web)
("https://blog.codinghorror.com/rss/" blog coding)
("https://feeds.feedburner.com/PythonInsider" python blog news)
("https://www.destatis.de/SiteGlobals/Functions/RSSFeed/DE/RSSNewsfeed/Aktuell.xml;jsessionid=FAFA8003CFA3617DA531B13EE3A0C25B.internet8711?nn=241288" data public)
("https://www.heise.de/make/rss/hardware-hacks-atom.xml" hardware hacking make)
("https://www.test.de/rss/geldanlage-banken/" test finanzen geld banken)
("https://blog.rust-lang.org/feed.xml" rust blog news))
elfeed-search-filter "@1-week-ago +unread "))
(use-package gnus
:ensure nil
:hook (gnus-summary-prepare . gnus-summary-sort-by-most-recent-date)
:custom
(user-full-name "Marcus Kammer")
(gnus-inhibit-startup-message t)
(gnus-check-new-newsgroups nil)
(gnus-select-method
'(nntp "news.individual.de"
(nntp-open-connection-function nntp-open-ssl-stream)
(nntp-port-number 563))))