summary refs log tree commit diff stats
path: root/init.el
diff options
context:
space:
mode:
authorCase Duckworth2021-10-14 17:27:03 -0500
committerCase Duckworth2021-10-14 17:27:03 -0500
commit8194b0d9cac81f2a1723c2c177fe682df15a505e (patch)
treee9150f28cbfd84b9e74fdc873e50e84d34053b9d /init.el
parentReindent (diff)
parentAdd a comment (diff)
downloademacs-8194b0d9cac81f2a1723c2c177fe682df15a505e.tar.gz
emacs-8194b0d9cac81f2a1723c2c177fe682df15a505e.zip
Merge branch 'main' of https://github.com/duckwork/.emacs.d
Diffstat (limited to 'init.el')
-rw-r--r--init.el11
1 files changed, 7 insertions, 4 deletions
diff --git a/init.el b/init.el index bebdd69..32bf170 100644 --- a/init.el +++ b/init.el
@@ -810,10 +810,13 @@ specific to most general, they are these:
810 ("/Trash" . ?t))))))) 810 ("/Trash" . ?t)))))))
811 mu4e-get-mail-command "mbsync -a" 811 mu4e-get-mail-command "mbsync -a"
812 mu4e-maildir "~/mail" 812 mu4e-maildir "~/mail"
813 mu4e-update-interval (unless (file-exists-p 813 mu4e-update-interval (unless
814 (expand-file-name 814 ;; I just realized... there is probably a
815 "systemd/user/mbsync.timer" 815 ;; /much/ better way to do this.
816 (getenv "XDG_CONFIG_HOME"))) 816 (file-exists-p
817 (expand-file-name
818 "systemd/user/mbsync.timer"
819 (getenv "XDG_CONFIG_HOME")))
817 (* 60 5)) 820 (* 60 5))
818 sendmail-program (seq-some #'executable-find 821 sendmail-program (seq-some #'executable-find
819 '("msmtp" 822 '("msmtp"