From d4aa2eee9296fb81722ecb21e4b7719a8b81f9e2 Mon Sep 17 00:00:00 2001 From: Marcel Kapfer Date: Thu, 15 Jun 2023 23:14:27 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20(mu4e)=20Add=20Debian=20package=20a?= =?UTF-8?q?s=20possible=20load=20path?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config.org | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/config.org b/config.org index e2f8e52..96f3796 100644 --- a/config.org +++ b/config.org @@ -2260,13 +2260,16 @@ Not all distributions that I use have a enough up-to-date package of mu/maildir- (let* ((mu4e-site-lisp-path "/share/emacs/site-lisp/mu4e") (mu4e-load-path-usr (concat "/usr" mu4e-site-lisp-path)) (mu4e-load-path-usr-local (concat "/usr/local" mu4e-site-lisp-path)) - (mu4e-load-path-nix (concat (getenv "HOME") "/.nix-profile" mu4e-site-lisp-path))) + (mu4e-load-path-nix (concat (getenv "HOME") "/.nix-profile" mu4e-site-lisp-path)) + (mu4e-load-path-debian "/usr/share/emacs/site-lisp/elpa")) (cond ((file-directory-p mu4e-load-path-nix) mu4e-load-path-nix) ((file-directory-p mu4e-load-path-usr-local) mu4e-load-path-usr-local) ((file-directory-p mu4e-load-path-usr) mu4e-load-path-usr) + ((file-directory-p mu4e-load-path-debian) + mu4e-load-path-debian) (t (error "mu4e not found!")))))) #+end_src