From 27bb91229d33c8a53ac5c624975f71eb65afb667 Mon Sep 17 00:00:00 2001 From: Charlotte Van Petegem Date: Sat, 20 Mar 2021 22:16:21 +0100 Subject: [PATCH] Use ivy for as completion in mu4e --- modules/emacs/init.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/emacs/init.el b/modules/emacs/init.el index 2e7e9ce5..1e02fe66 100644 --- a/modules/emacs/init.el +++ b/modules/emacs/init.el @@ -159,6 +159,7 @@ (use-package mu4e ;; Use mu4e included in the mu package, see emacs.nix :ensure nil + :after (ivy) :demand t :custom (mu4e-change-filenames-when-moving t "Avoid sync issues with mbsync") @@ -168,6 +169,7 @@ (mu4e-attachment-dir "/home/charlotte/downloads" "Save attachments to downloads folder") (mu4e-compose-dont-reply-to-self t "Don't reply to mysel on reply to all") (mu4e-confirm-quit nil "Don't confirm when quitting") + (mu4e-completing-read-function 'ivy-completing-read) (message-kill-buffer-on-exit t "Close buffer when finished with email") (sendmail-program "msmtp" "Use msmtp to send email") (message-sendmail-f-is-evil t "Remove username from the emacs message")