diff options
Diffstat (limited to '.emacs.d/init.el')
-rw-r--r-- | .emacs.d/init.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 5cea6f4..2245c0a 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -901,7 +901,7 @@ you have the correctly set the OPENAI_API_KEY variable" :load-path "/opt/homebrew/share/emacs/site-lisp/mu/mu4e/")) ;; Check if we have mu4e available ;; if t load mu4e settings -(when (require 'mu4e t) +(when (require 'mu4e nil 'noerror) (setq mu4e-update-interval (* 10 60)) (setq mu4e-get-mail-command "mbsync -a") (setq mu4e-maildir-list "~/Mail/Inbox") |