Merge branch 'main' of git.sr.ht:~marcuskammer/emacs.d

This commit is contained in:
Marcus Kammer 2023-01-15 09:37:05 +01:00
commit f4a168147a
2 changed files with 11 additions and 7 deletions

View file

@ -31,13 +31,13 @@
("https://twobithistory.org/feed.xml" history blog coding)
("https://gwern.substack.com/feed" blog technology personal)
("https://rework.withgoogle.com/blog/feed" teams work blog)))
(setq elfeed-search-filter "@4-day-ago +unread")
(setq elfeed-search-filter "@2-day-ago +unread")
(let ((feeds (expand-file-name "~/feeds.el")))
(if (file-exists-p feeds)
(load-file feeds)))
:config
(mapcar
#'(lambda (feed) (add-to-list 'elfeed-feeds feed))
(lambda (feed) (add-to-list 'elfeed-feeds feed))
;; lisp / clojure / emacs feeds
'(;("http://planet.sbcl.org/rss20.xml" sbcl lisp)
("https://xenodium.com/rss.xml" emacs blog)
@ -57,11 +57,11 @@
("https://olddeuteronomy.github.io/index.xml" emacs blog)
("https://www.colinmclear.net/posts/index.xml" research emacs blog)
("http://nullprogram.com/feed/" lisp blog)
;("http://planet.clojure.in/atom.xml" clojure news hacking jvm java)
;("https://lisp-journey.gitlab.io/index.xml" lisp blog)
;("http://planet.clojure.in/atom.xml" clojure news hacking jvm java)
;("https://lisp-journey.gitlab.io/index.xml" lisp blog)
))
(mapcar
#'(lambda (feed) (add-to-list 'elfeed-feeds feed))
(lambda (feed) (add-to-list 'elfeed-feeds feed))
;; ux feeds
'(("https://www.audiotranskription.de/feed/" ux blog qda)
("https://uxcontent.com/feed/" ux writing blog)
@ -74,9 +74,10 @@
("https://jeffgothelf.com/feed/" lean ux design blog)
("https://uxwritinghub.com/feed/" ux writing blog)))
(mapcar
#'(lambda (feed) (add-to-list 'elfeed-feeds feed))
(lambda (feed) (add-to-list 'elfeed-feeds feed))
;; podcasts
'(("https://logbuch-netzpolitik.de/feed/m4a" netzpolitik podcast)
("https://www.mdr.de/nachrichten/podcast/general/russland-angriff-krieg-ukraine100-podcast.xml" krieg ukraine podcast)
("https://www.deutschlandfunk.de/umwelt-und-verbraucher-100.rss" umwelt verbraucher klima podcast)
("https://jung-naiv.podigee.io/feed/mp3" politik podcast)
("https://changelog.com/podcast/feed" software-development open-source podcast)

View file

@ -47,6 +47,8 @@
(use-package lisp-mode
:ensure nil
:init
(add-hook 'lisp-mode-hook (lambda () (prettify-symbols-mode)))
:mode (("\\.lisp$" . lisp-mode)
("\\.lsp$" . lisp-mode)
("\\.cl$" . lisp-mode)))
@ -137,7 +139,8 @@
:mode (("\\.html?\\'" . web-mode)
("\\.xhtml?\\'" . web-mode)
("\\.tmpl\\'" . web-mode)
("\\.handlebars\\'" . web-mode))
("\\.hbs\\'" . web-mode))
("\\.handlebars\\'" . web-mode)
:custom
(web-mode-markup-indent-offset 2)
(web-mode-css-indent-offset 2)