mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
Alexander-Miller/treemacs@a6f9e9f1ce -> Alexander-Miller/treemacs@63e2bc207a Silex/docker.el@9bcefbe54d -> Silex/docker.el@4fc69969b1 akermu/emacs-libvterm@2b1392cb2b -> akermu/emacs-libvterm@2681120b77 bdarcus/bibtex-actions@6e3a194c3a -> bdarcus/bibtex-actions@08c6ca0e5b dash-docs-el/dash-docs@dafc8fc9f1 -> dash-docs-el/dash-docs@29848b6b34 dgutov/diff-hl@992559f98a -> dgutov/diff-hl@40c89a7b0d dimitri/switch-window@2801d9b3a9 -> dimitri/switch-window@8d9fe251d8 editorconfig/editorconfig-emacs@e10fa22b13 -> editorconfig/editorconfig-emacs@2ab86dc9a8 ema2159/centaur-tabs@9c7c936e4e -> ema2159/centaur-tabs@8b4249c405 emacs-circe/circe@d6f1fa1864 -> emacs-circe/circe@77e16de3b9 emacs-lsp/lsp-treemacs@905cc74726 -> emacs-lsp/lsp-treemacs@d82df44d63 emacsorphanage/osx-trash@0f1dc052d0 -> emacsorphanage/osx-trash@af74a2055a emacsorphanage/quickrun@35e91f4b6c -> emacsorphanage/quickrun@78317951cd flycheck/flycheck@21d52264aa -> flycheck/flycheck@784f184cdd hlissner/emacs-doom-themes@9e2680b918 -> hlissner/emacs-doom-themes@65fb964f36 https://git.savannah.gnu.org/git/emms.git@6e0aaaf4c559 -> https://git.savannah.gnu.org/git/emms.git@c42fab572846 ideasman42/emacs-spell-fu@1abcb5594e -> ideasman42/emacs-spell-fu@10823ae58f ideasman42/emacs-undo-fu@e0ad06b5ef -> ideasman42/emacs-undo-fu@34b27c01da joostkremers/writeroom-mode@b648b34017 -> joostkremers/writeroom-mode@7f4ec92404 kidd/org-gcal.el@4c2616a4f8 -> kidd/org-gcal.el@80e6f9501f magnars/expand-region.el@4b8322774d -> magnars/expand-region.el@95a773bd8f millejoh/emacs-ipython-notebook@09af85821e -> millejoh/emacs-ipython-notebook@0600c286bd mohkale/consult-eglot@a6aeb6fa07 -> mohkale/consult-eglot@28a09cc839 noctuid/link-hint.el@09ba5727d8 -> noctuid/link-hint.el@d3c5bacc9c rolandwalker/nav-flash@55786c9582 -> rolandwalker/nav-flash@2e31f32085 skeeto/elfeed@243add9e74 -> skeeto/elfeed@162d7d545e szermatt/emacs-bash-completion@65e54c6f9c -> szermatt/emacs-bash-completion@c5eaeed156 tarsius/hl-todo@5ac0076cfe -> tarsius/hl-todo@42f744ffb5 tecosaur/emacs-everywhere@64ba2e3f30 -> tecosaur/emacs-everywhere@da88fa2d04 tkf/emacs-request@f3a5b4352e -> tkf/emacs-request@2b68b3ca54 tmalsburg/helm-bibtex@a0d32ab167 -> tmalsburg/helm-bibtex@b85662081d yoshiki/yaml-mode@3a57058468 -> yoshiki/yaml-mode@63b637f846 yqrashawn/fd-dired@c223aee30a -> yqrashawn/fd-dired@458464771b
app/rss
Description
- Read RSS feeds in the comfort of DOOM (Emacs)
Maintainers
This module has no dedicated maintainers.
Module Flags
+org
to enableelfeed-org
to useorg-directory/elfeed.org
Plugins
- elfeed
-
+org
Hacks
-
By default
elfeed-search-filter
is set to@2-weeks-ago
and makes the last 2 weeks of entries visible. This needs to be set after elfeed has loaded like so in yourconfig.el
(after! elfeed (setq elfeed-search-filter "@1-month-ago +unread"))
Prerequisites
This module has no prerequisites.
Features
- As there isn't currently binding for
elfeed-update
you can run it withM-x elfeed-update
Configuration
Without +org
When you don't want to use org mode to manage your elfeed feeds you can put your subscriptions to personal config.el
file, ex:
(setq elfeed-feeds
'("https://this-week-in-rust.org/rss.xml"
"http://feeds.bbci.co.uk/news/rss.xml"))
With +org
When using +org
flag then configuration is easier. You can use org-mode
to configure feeds to follow.
* root :elfeed:
** Programming :programming:
*** [[https://this-week-in-rust.org/rss.xml][This Week in Rust]] :rust:
** News :news:
*** Top news :tops:
**** http://feeds.bbci.co.uk/news/rss.xml
- Root of
elfeed-org
needs to have:elfeed:
tag. This is whereelfeed-org
starts to read. - You can have subheaders as in example
:programming:
, andelfeed-org
applies that tag to all subheader feeds, in example it adds it toThis Week in Rust
. - You can "name" feeds as you please with
org-mode
org-insert-link
(C-c C-l
) and put name as you want intodescription
. - If you don't want to use
org-directory/elfeed.org
file you can specify it with(setq rmh-elfeed-org-files '("path/to/your/elfeed/file.org))
Keybindings
-
General
Key Mode Description S-RET
Elfeed-search-mode Open link into browser RET
Elfeed-search-mode Open item s
Elfeed-search-mode Filter C-j
Elfeed-show-mode Move to next item C-k
Elfeed-show-mode Move to previous item -
If
:editor evil +everywhere
Key Description q elfeed-kill-buffer r elfeed-search-update–force
News filtering
-
Time filtering
@2-days-ago
Past two days@2-weeks-ago
Past two weeks@2-years-ago
Past two years@2020-06-19
To show specific day@2020-06-19--2020-03-10
Span of time
-
Tag filtering
- Include
+news
- Exclude
-rust
- Both
+news -rust
- Include
-
String filtering, this is case insensitive
-
Include
DOOM
Linu[sx]
Search for bothLinus
andLinux
- Exclude
!something
-
Automatically updating feed when opening elfeed
Hook elfeed-update
to elfeed-search-mode-hook
(add-hook! 'elfeed-search-mode-hook 'elfeed-update)