Add elfeed and hide the mu4e update buffer

This commit is contained in:
Alexander Rosenberg 2024-04-17 02:37:57 -07:00
parent de755e7496
commit 2bf7671be7
Signed by: Zander671
GPG Key ID: 5FD0394ADBD72730

13
init.el
View File

@ -1186,6 +1186,7 @@ If no name is given, list all bookmarks instead."
message-send-mail-function 'sendmail-send-it message-send-mail-function 'sendmail-send-it
mu4e-change-filenames-when-moving t mu4e-change-filenames-when-moving t
mu4e-context-policy 'pick-first mu4e-context-policy 'pick-first
mu4e-last-update-buffer " *mu4e-last-update*"
mu4e-index-update-error-warning nil mu4e-index-update-error-warning nil
mu4e-get-mail-command "mbsync protonmail" mu4e-get-mail-command "mbsync protonmail"
mu4e-completing-read-function #'completing-read-default mu4e-completing-read-function #'completing-read-default
@ -1224,6 +1225,18 @@ If no name is given, list all bookmarks instead."
(mu4e t) (mu4e t)
(mu4e-context-switch nil "Personal") (mu4e-context-switch nil "Personal")
;; elfeed
(use-package elfeed
:bind (("C-c d" . elfeed))
:custom
(elfeed-feeds
'(("https://archlinux.org/feeds/news/" linux arch)
("https://9to5linux.com/feed/atom" linux news)))
(elfeed-log-buffer-name " *elfeed-log*")
:config
(evil-define-key '(normal motion) elfeed-search-mode-map
"r" #'elfeed-search-fetch))
;; helpful ;; helpful
(use-package helpful (use-package helpful
:hook ((emacs-lisp-mode . my/-helpful-setup-emacs-lisp-mode) :hook ((emacs-lisp-mode . my/-helpful-setup-emacs-lisp-mode)