diff options
author | Case Duckworth | 2021-10-13 21:29:18 -0500 |
---|---|---|
committer | Case Duckworth | 2021-10-13 21:29:18 -0500 |
commit | d883c98a281494701f6de58ff1f38519e1154f1c (patch) | |
tree | c69dac822817c55abc6d20d2d3604c310cfcd7fd | |
parent | I told myself I'd have useful commit messages today (diff) | |
download | emacs-d883c98a281494701f6de58ff1f38519e1154f1c.tar.gz emacs-d883c98a281494701f6de58ff1f38519e1154f1c.zip |
Add a comment
I thought I just fixed a typo ...
-rw-r--r-- | init.el | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/init.el b/init.el index a2b8368..089ed1f 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" |