Tweak mu4e setup
This commit is contained in:
parent
0d7de3d706
commit
8399ace349
27
config.org
27
config.org
|
@ -44,6 +44,9 @@
|
|||
- [[#account-configuration][Account configuration]]
|
||||
- [[#disable-org-msg-by-default][Disable =org-msg= by default]]
|
||||
- [[#message-quoting-style][Message quoting style]]
|
||||
- [[#use-gnus-view-for-mu4e][Use Gnus view for =mu4e=]]
|
||||
- [[#disable-formatflowed][Disable format=flowed]]
|
||||
- [[#add-git-apply-path-to-mu4e-actions][Add git-apply-path to mu4e actions]]
|
||||
|
||||
* Misc
|
||||
|
||||
|
@ -600,3 +603,27 @@ Has to be duplicated because =mu4e= doesn't use ~message-cite-style~'s values.
|
|||
message-yank-empty-prefix ">"
|
||||
message-citation-line-format "%f writes:"))
|
||||
#+end_src
|
||||
|
||||
** Use Gnus view for =mu4e=
|
||||
|
||||
#+begin_src emacs-lisp
|
||||
(after! mu4e
|
||||
(setq mu4e-view-use-gnus t))
|
||||
#+end_src
|
||||
|
||||
** Disable format=flowed
|
||||
|
||||
#+begin_src emacs-lisp
|
||||
(after! mu4e
|
||||
(setq mu4e-compose-format-flowed nil))
|
||||
#+end_src
|
||||
|
||||
** Add git-apply-path to mu4e actions
|
||||
|
||||
#+begin_src emacs-lisp
|
||||
(after! mu4e
|
||||
(add-to-list 'mu4e-view-actions
|
||||
'("GitApply" . mu4e-action-git-apply-patch) t)
|
||||
(add-to-list 'mu4e-view-actions
|
||||
'("MboxGitApply" . mu4e-action-git-apply-mbox) t))
|
||||
#+end_src
|
||||
|
|
Loading…
Reference in a new issue