diff options
Diffstat (limited to 'config/emacs.org')
-rw-r--r-- | config/emacs.org | 28 |
1 files changed, 27 insertions, 1 deletions
diff --git a/config/emacs.org b/config/emacs.org index 373a5e2..18841ab 100644 --- a/config/emacs.org +++ b/config/emacs.org @@ -554,6 +554,32 @@ elfeed to fetch feeds found on my website: :config (elfeed-org)) #+end_src +Then we set up elfeed-tube for Youtube video RSS feeds (so I don't ever have to use the web +interface and can control it from emacs): +#+begin_src emacs-lisp + (use-package elfeed-tube + :after elfeed + :demand t + :config + ;; (setq elfeed-tube-auto-save-p nil) ; default value + ;; (setq elfeed-tube-auto-fetch-p t) ; default value + (elfeed-tube-setup) + + :bind (:map elfeed-show-mode-map + ("F" . elfeed-tube-fetch) + ([remap save-buffer] . elfeed-tube-save) + :map elfeed-search-mode-map + ("F" . elfeed-tube-fetch) + ([remap save-buffer] . elfeed-tube-save))) + + (use-package elfeed-tube-mpv + :bind (:map elfeed-show-mode-map + ("C-c C-f" . elfeed-tube-mpv-follow-mode) + ("C-c C-c" . elfeed-tube-mpv) + ("C-c C-w" . elfeed-tube-mpv-where) + :map elfeed-search-mode-map + ("M" . elfeed-tube-mpv))) +#+end_src ** Project Drawer #+begin_src emacs-lisp (use-package treemacs) @@ -651,7 +677,7 @@ Email in emacs can be done with Mu4e. (setq mu4e-compose-dont-reply-to-self t) (setq mu4e-change-filenames-when-moving t) (setq mu4e-get-mail-command "mbsync ret2pop") - (setq mu4e-compose-reply-ignore-address (add-to-list '("no-?reply") system-email)) + (setq mu4e-compose-reply-ignore-address (list "no-?reply" system-email)) (setq mu4e-html2text-command "w3m -T text/html" ; how to hanfle html-formatted emails mu4e-update-interval 300 ; seconds between each mail retrieval mu4e-headers-auto-update t ; avoid to type `g' to update |