summaryrefslogtreecommitdiff
path: root/.emacs.d/init.el
diff options
context:
space:
mode:
authorThanos Apollo <[email protected]>2024-01-28 22:11:07 +0200
committerThanos Apollo <[email protected]>2024-01-28 22:11:07 +0200
commite0a613267f0bb2459b1de1a659e730e212fa144c (patch)
tree01fbdc4801bfdf20b7146a0df0df5ded090531be /.emacs.d/init.el
parent1f7d38b545679f92d8aa305e0da82fed458121a3 (diff)
emacs: Add package-lint & load mu4e only on hermes and zeus
Diffstat (limited to '.emacs.d/init.el')
-rw-r--r--.emacs.d/init.el6
1 files changed, 5 insertions, 1 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el
index 20127f3..e7ec48d 100644
--- a/.emacs.d/init.el
+++ b/.emacs.d/init.el
@@ -779,6 +779,10 @@
:config
(mu4e-alert-enable-mode-line-display))
+(use-package package-lint
+ :defer t)
+
(require 'thanos-commands) ;; Misc commands
-(require 'thanos-mu4e) ;; Email client configurationensure
+(when (or is-zeus is-hermes)
+ (require 'thanos-mu4e))
;;; init.el ends here