blob: ea8f9740e7bddd77b9595cf1a2c0207e1cd65ec8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
;;; elfeed-conf.el --- My configurations for elfeed -*- lexical-binding: t; -*-
;; Copyright (C) 2021 李俊緯
;; Author: 李俊緯 <mmemmew@gmail.com>
;; Keywords: comm, hypermedia
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <https://www.gnu.org/licenses/>.
;;; Commentary:
;; This is my configuration file of elfeed, for viewing RSS/atom
;; feeds.
;;; Code:
(use-package "elfeed" 'elfeed)
(setq elfeed-feeds
(list (list "https://wiwi.video/feeds/videos.atom?sort=-publishedAt"
'wiwi)
(list "https://protesilaos.com/codelog.xml"
'prot)))
;; I still prefer the defaults.
(setq elfeed-show-entry-switch #'switch-to-buffer)
(setq elfeed-show-entry-delete #'elfeed-kill-buffer)
;;;###autoload
(defun elfeed-display-buffer (buffer)
"Display BUFFER in the bottom window."
(display-buffer buffer
'(display-buffer-reuse-mode-window display-buffer-at-bottom)))
;;;###autoload
(defun durand-elfeed-kill-buffer ()
"Kill the buffer and delete its window."
(kill-buffer (current-buffer))
(cond
((one-window-p))
((delete-window (get-buffer-window (current-buffer))))))
(provide 'elfeed-conf)
;;; elfeed-conf.el ends here
|