Also add visual-fill-column to mu4e-compose (as well as mu4e-view)

This commit is contained in:
Evie Litherland-Smith 2024-11-21 09:55:52 +00:00
parent 75269f8761
commit 304e32ebad

View file

@ -209,7 +209,13 @@ Configure the look and feel of Emacs
(with-eval-after-load 'mu4e
(add-hook 'mu4e-view-mode-hook
#'(lambda () (visual-line-mode +1) (visual-fill-column-mode +1))))
#'(lambda ()
(visual-line-mode +1)
(visual-fill-column-mode +1)))
(add-hook 'mu4e-compose-mode-hook
#'(lambda ()
(visual-line-mode +1)
(visual-fill-column-mode +1))))
#+end_src
*** Font ligatures
#+begin_src emacs-lisp