forked from magnars/.emacs.d
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
33 changed files
with
26,665 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
(require 'mu4e) | ||
(setq mu4e-get-mail-command "offlineimap") | ||
(setq message-kill-buffer-on-exit t) | ||
|
||
;; don't save message to Sent Messages, Gmail/IMAP takes care of this | ||
(setq mu4e-sent-messages-behavior 'delete) | ||
|
||
;; Try to display images in mu4e | ||
(setq | ||
mu4e-view-show-images t | ||
mu4e-view-image-max-width 800) | ||
|
||
;; use imagemagick, if available | ||
(when (fboundp 'imagemagick-register-types) | ||
(imagemagick-register-types)) | ||
|
||
(setq mu4e-confirm-quit nil | ||
mu4e-headers-date-format "%d/%b/%Y %H:%M" ; date format | ||
mu4e-html2text-command "html2text -utf8 -width 72") | ||
|
||
(provide 'setup-mu4e) |
Oops, something went wrong.