Emacs: Fix email availability detection.

This commit is contained in:
tastytea 2020-03-31 16:17:16 +02:00
parent 4300313882
commit a460a2e286
2 changed files with 5 additions and 5 deletions

View File

@ -1,6 +1,6 @@
;;; package-management.el --- Initialize package management -*- lexical-binding: t; -*-
;; Time-stamp: <2020-03-30T00:21:50+0200>
;; Time-stamp: <2020-03-31T02:03:50+0200>
;;; Commentary:
;; * Set up straight

View File

@ -1,6 +1,6 @@
;;; email.el --- Email setup -*- lexical-binding: t; -*-
;; Time-stamp: <2020-03-31T01:55:53+0200>
;; Time-stamp: <2020-03-31T16:16:58+0200>
;;; Commentary:
@ -8,9 +8,9 @@
(require 'basics/package-management)
(when (or (and (executable-find "mu")
(file-exists-p "~/email/tzend"))
(file-exists-p "~/.maildir"))
(when (and (executable-find "mu")
(or (file-exists-p "~/email/tzend")
(file-exists-p "~/.maildir")))
(use-package mu4e
:straight nil ; Installed by package “mu”.
:after (ivy smtpmail)