diff options
-rw-r--r-- | config.org | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/config.org b/config.org index ce9241c..ba7d7a3 100644 --- a/config.org +++ b/config.org | |||
@@ -1058,6 +1058,25 @@ from [[https://github.com/alphapapa/unpackaged.el#ensure-blank-lines-between-hea | |||
1058 | (0x0-default-service 'ttm)) | 1058 | (0x0-default-service 'ttm)) |
1059 | #+end_src | 1059 | #+end_src |
1060 | 1060 | ||
1061 | ** Elfeed | ||
1062 | |||
1063 | inspired by [[https://karthinks.com/software/lazy-elfeed/]["Lazy Elfeed"]]. | ||
1064 | |||
1065 | #+begin_src emacs-lisp | ||
1066 | (use-package elfeed | ||
1067 | :when (executable-find "curl") | ||
1068 | :hook | ||
1069 | (elfeed-show-mode-hook . visual-fill-column-mode)) | ||
1070 | |||
1071 | (use-package elfeed-org | ||
1072 | :custom | ||
1073 | (rmh-elfeed-org-files | ||
1074 | (list (expand-file-name "elfeed.org" | ||
1075 | user-emacs-directory))) | ||
1076 | :init | ||
1077 | (elfeed-org)) | ||
1078 | #+end_src | ||
1079 | |||
1061 | * Appendices | 1080 | * Appendices |
1062 | 1081 | ||
1063 | ** Emacs' files | 1082 | ** Emacs' files |