From 100151f3bef8b760c375ffb13e0037dd2b064e38 Mon Sep 17 00:00:00 2001 From: Charlotte Van Petegem Date: Sat, 20 Mar 2021 22:56:38 +0100 Subject: [PATCH] Don't show related messages by default --- modules/emacs/init.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/emacs/init.el b/modules/emacs/init.el index 1dd7ad0a..582ee274 100644 --- a/modules/emacs/init.el +++ b/modules/emacs/init.el @@ -169,7 +169,8 @@ (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) + (mu4e-completing-read-function 'ivy-completing-read "Use ivy for completion") + (mu4e-headers-include-related nil "Don't show related messages by default") (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")