diff --git a/init.el b/init.el index 5ee02c6..ce5d7a1 100644 --- a/init.el +++ b/init.el @@ -1186,6 +1186,7 @@ If no name is given, list all bookmarks instead." message-send-mail-function 'sendmail-send-it mu4e-change-filenames-when-moving t mu4e-context-policy 'pick-first + mu4e-last-update-buffer " *mu4e-last-update*" mu4e-index-update-error-warning nil mu4e-get-mail-command "mbsync protonmail" mu4e-completing-read-function #'completing-read-default @@ -1224,6 +1225,18 @@ If no name is given, list all bookmarks instead." (mu4e t) (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 (use-package helpful :hook ((emacs-lisp-mode . my/-helpful-setup-emacs-lisp-mode)