Browse Source

Add elfeed

master
Maxime Wack 2 years ago
parent
commit
3452a1be19
1 changed files with 22 additions and 1 deletions
  1. +22
    -1
      .config/emacs/init.el

+ 22
- 1
.config/emacs/init.el View File

@@ -251,7 +251,8 @@ OPT is the optional arg to the original function"
"mr" 'ess-r-mode
"mw" 'woman
"mtv" 'seriestracker
"map" 'osm-home))
"map" 'osm-home
"mf" 'elfeed))

;;;;; Hydra

@@ -2808,3 +2809,23 @@ Maxime Wack"))
"v" 'osm-zoom-in
"?" 'osm-search
"/" 'osm-search))


;;; Elfeed

(use-package elfeed
:config
(setq elfeed-feeds '("https://news.ycombinator.com/rss")
elfeed-search-title-max-width 200
elfeed-search-title-min-width 200)

:general
(:keymaps 'elfeed-search-mode-map
:states 'normal
"U" 'elfeed-update
"u" 'elfeed-search-tag-all-unread
"ð" 'evil-previous-line
"ß" 'evil-next-line
"®" 'elfeed-search-browse-url
"þ" 'elfeed-search-untag-all-unread
"q" 'elfeed-search-quit-window))

Loading…
Cancel
Save