about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--init.el17
1 files changed, 17 insertions, 0 deletions
diff --git a/init.el b/init.el index 34001fa..998b900 100644 --- a/init.el +++ b/init.el
@@ -685,6 +685,23 @@ specific to most general, they are these:
685(setup mouse-avoidance 685(setup mouse-avoidance
686 (mouse-avoidance-mode 'banish)) 686 (mouse-avoidance-mode 'banish))
687 687
688(setup mu4e
689 (:load-from "/usr/share/emacs/site-lisp/mu4e")
690 (:option mu4e-change-filenames-when-moving t
691 mu4e-update-interval (* 10 60)
692 mu4e-get-mail-command "mbsync -a"
693 mu4e-maildir "~/mail/clickhere")
694 (:option mu4e-drafts-folder "/[Gmail]/Drafts"
695 mu4e-sent-folder "/[Gmail]/Sent Mail"
696 mu4e-refile-folder "/[Gmail]/All Mail"
697 mu4e-trash-folder "/[Gmail]/Trash"
698 mu4e-maildir-shortcuts
699 `((:maildir "/Inbox" :key ?i)
700 (:maildir ,mu4e-drafts-folder :key ?d)
701 (:maildir ,mu4e-sent-folder :key ?s)
702 (:maildir ,mu4e-refile-folder :key ?a)
703 (:maildir ,mu4e-trash-folder :key ?t))))
704
688(setup page 705(setup page
689 (:option page-delimiter 706 (:option page-delimiter
690 (rx bol (or "\f" ";;;") 707 (rx bol (or "\f" ";;;")