Fix some weird mu4e behaviours

Signed-off-by: magic_rb <magic_rb@redalder.org>
This commit is contained in:
magic_rb 2024-05-02 20:59:52 +02:00
parent d319f45e78
commit 2393b63c87
No known key found for this signature in database
GPG key ID: 08D5287CC5DDCA0E

View file

@ -60,6 +60,24 @@ By default, when mu4e is asking for messages (be it unread or inbox) it'll ask f
(setq mu4e-headers-include-related nil)
#+end_src
When in the main screen, it is undesirable to quit mu4e completely as that stops the background email fetching. Make the default behaviour to just close the buffer.
#+begin_src emacs-lisp
(bind-key "q" #'meow-quit mu4e-main-mode-map)
#+end_src
* mu4e meow
Use ~meow~ ~motion~ state in ~mu4e-view-mode~.
#+begin_src emacs-lisp
(use-package mu4e-meow
:no-require t
:after (mu4e meow)
:config
(add-to-list 'meow-mode-state-list '(mu4e-view-mode . motion)))
#+end_src
* mu4e-alert