more mu4e, some fonts, some misc spacemacs stuff

This commit is contained in:
Dustin Swan
2015-03-25 11:49:11 -05:00
parent 97336db31d
commit 60820ed40d
10 changed files with 25 additions and 12 deletions

View File

@@ -44,12 +44,13 @@
;; mu4e-html2text-command "html2text -nobs"
;; mu4e-html2text-command "w3m -T text/html"
mu4e-html2text-command 'mu4e-shr2text
mu4e-view-prefer-html 't ;; sorryboutit
mu4e-view-prefer-html t ;; sorryboutit
mu4e-view-show-images t ;; doesn't work with shr2text
message-send-mail-function 'message-send-mail-with-sendmail
message-sendmail-extra-arguments '("--read-envelope-from")
message-sendmail-f-is-evil 't
message-sendmail-f-is-evil t
message-kill-buffer-on-exit t
sendmail-program "/usr/local/bin/msmtp"
;; just Gmail at first
@@ -105,6 +106,11 @@
(add-to-list 'mu4e-view-actions '("ViewInBrowser" . mu4e-action-view-in-browser) t)
(add-hook 'mu4e-index-updated-hook
(lambda ()
(shell-command (concat "youve_got_mail "
(number-to-string mu4e-update-interval)))))
;; use imagemagick, if available
(when (fboundp 'imagemagick-register-types)
(imagemagick-register-types))))

View File

@@ -22,9 +22,15 @@ which require an initialization must be listed explicitly in the list.")
;; For each package, define a function mu4e/init-<package-mu4e>
;;
;; (defun mu4e/init-my-package ()
;; "Initialize my package"
;; )
;; (defun mu4e/init-mu4e-maildirs-extension ()
"Initialize my package"
;; (use-package mu4e-maildirs-extension
;; :config
;; (require 'mu4e-maildirs-extension)
;; (require 'mu4e-multi)
;; (mu4e-maildirs-extension)
;; )
;; )
;;
;; Often the body of an initialize function uses `use-package'
;; For more info on `use-package', see readme: