mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-25 17:46:14 +01:00
Fix some weird mu4e
behaviours
Signed-off-by: magic_rb <magic_rb@redalder.org>
This commit is contained in:
parent
d319f45e78
commit
2393b63c87
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue