Move mu4e customise variables into use-package :custom block
This commit is contained in:
parent
c151182c23
commit
dfd3120208
|
@ -600,23 +600,23 @@
|
|||
message-auto-save-directory nil
|
||||
message-kill-buffer-on-exit t
|
||||
mail-user-agent 'mu4e-user-agent
|
||||
read-mail-command 'mu4e
|
||||
mu4e-completing-read-function #'completing-read-default
|
||||
mu4e-split-view 'horizontal
|
||||
mu4e-maildir "~/Mail"
|
||||
mu4e-attachment-dir "~/Downloads"
|
||||
mu4e-get-mail-command "mbsync -a"
|
||||
mu4e-update-interval (* 5 60) ; Every 5 minutes
|
||||
mu4e-sent-messages-behavior 'sent
|
||||
mu4e-change-filenames-when-moving t
|
||||
mu4e-context-policy 'pick-first
|
||||
mu4e-maildir-shortcuts '((:maildir "/Proton/Inbox/" :key ?p)
|
||||
(:maildir "/iCloud/Inbox/" :key ?i)
|
||||
(:maildir "/Outlook/Inbox/" :key ?w)))
|
||||
read-mail-command 'mu4e)
|
||||
|
||||
(use-package mu4e
|
||||
:bind (("C-c o m" . mu4e))
|
||||
:custom
|
||||
(mu4e-completing-read-function #'completing-read-default)
|
||||
(mu4e-split-view 'horizontal)
|
||||
(mu4e-attachment-dir "~/Downloads")
|
||||
(mu4e-get-mail-command "mbsync -a")
|
||||
(mu4e-update-interval (* 5 60)) ; Every 5 minutes
|
||||
(mu4e-sent-messages-behavior 'sent)
|
||||
(mu4e-change-filenames-when-moving t)
|
||||
(mu4e-context-policy 'ask-if-none)
|
||||
(mu4e-compose-context-policy 'ask-if-none)
|
||||
(mu4e-maildir-shortcuts '((:maildir "/Proton/Inbox/" :key ?p)
|
||||
(:maildir "/iCloud/Inbox/" :key ?i)
|
||||
(:maildir "/Outlook/Inbox/" :key ?w)))
|
||||
(mu4e-headers-fields
|
||||
'((:human-date . 8)
|
||||
(:from-or-to . 30)
|
||||
|
|
|
@ -720,23 +720,23 @@ For reference information, see [[https://orgmode.com][Org-mode website]]
|
|||
message-auto-save-directory nil
|
||||
message-kill-buffer-on-exit t
|
||||
mail-user-agent 'mu4e-user-agent
|
||||
read-mail-command 'mu4e
|
||||
mu4e-completing-read-function #'completing-read-default
|
||||
mu4e-split-view 'horizontal
|
||||
mu4e-maildir "~/Mail"
|
||||
mu4e-attachment-dir "~/Downloads"
|
||||
mu4e-get-mail-command "mbsync -a"
|
||||
mu4e-update-interval (* 5 60) ; Every 5 minutes
|
||||
mu4e-sent-messages-behavior 'sent
|
||||
mu4e-change-filenames-when-moving t
|
||||
mu4e-context-policy 'pick-first
|
||||
mu4e-maildir-shortcuts '((:maildir "/Proton/Inbox/" :key ?p)
|
||||
(:maildir "/iCloud/Inbox/" :key ?i)
|
||||
(:maildir "/Outlook/Inbox/" :key ?w)))
|
||||
read-mail-command 'mu4e)
|
||||
|
||||
(use-package mu4e
|
||||
:bind (("C-c o m" . mu4e))
|
||||
:custom
|
||||
(mu4e-completing-read-function #'completing-read-default)
|
||||
(mu4e-split-view 'horizontal)
|
||||
(mu4e-attachment-dir "~/Downloads")
|
||||
(mu4e-get-mail-command "mbsync -a")
|
||||
(mu4e-update-interval (* 5 60)) ; Every 5 minutes
|
||||
(mu4e-sent-messages-behavior 'sent)
|
||||
(mu4e-change-filenames-when-moving t)
|
||||
(mu4e-context-policy 'ask-if-none)
|
||||
(mu4e-compose-context-policy 'ask-if-none)
|
||||
(mu4e-maildir-shortcuts '((:maildir "/Proton/Inbox/" :key ?p)
|
||||
(:maildir "/iCloud/Inbox/" :key ?i)
|
||||
(:maildir "/Outlook/Inbox/" :key ?w)))
|
||||
(mu4e-headers-fields
|
||||
'((:human-date . 8)
|
||||
(:from-or-to . 30)
|
||||
|
|
Loading…
Reference in a new issue