|
@@ -134,6 +134,14 @@ Here we’re going to use Miniflux as a back-end store for our RSS feeds.
|
|
|
(run-at-time 300 300
|
|
|
(lambda () (when (= elfeed-curl-queue-active 0)
|
|
|
(elfeed-update))))
|
|
|
+;;;;; Database auto-save
|
|
|
+
|
|
|
+ ;; Save elfeed db automatically, because if Emacs crashes or is killed (which happens to me
|
|
|
+ ;; occasionally, especially since I develop packages in a single instance), we'd lose the db
|
|
|
+ ;; updates not saved.
|
|
|
+(unless (cl-loop for timer in timer-idle-list
|
|
|
+ thereis (equal (aref timer 5) #'elfeed-db-save))
|
|
|
+ (run-with-idle-timer 400 'repeat #'elfeed-db-save))
|
|
|
#+END_SRC
|
|
|
|
|
|
|
|
@@ -228,6 +236,7 @@ a serif font when I’m writing a lot of words.
|
|
|
"* TODO %a\n %?\n %i"))
|
|
|
org-todo-keywords
|
|
|
'((sequence "TODO(t)" "NEXT(n)" "WAITING(w)" "|" "DONE(d)"))
|
|
|
+ org-fancy-priorities-list '("🅰" "🅱" "🅲" "🅳" "🅴")
|
|
|
org-modules '(ol-eshell
|
|
|
ol-notmuch
|
|
|
ob-eval
|