From 269813e83d9ca8f40b6d90d51c6732ac89fe8974 Mon Sep 17 00:00:00 2001 From: Marc Pohling Date: Fri, 13 Apr 2018 12:21:59 +0200 Subject: [PATCH] added exclusion for email, when at work --- config.org | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/config.org b/config.org index 26cf65a..4cb8ef1 100644 --- a/config.org +++ b/config.org @@ -586,8 +586,10 @@ Requires counsel - maybe org-notmuch? - some way to refresh the notmuch db before I run notmuch? #+begin_src emacs-lisp -(use-package notmuch - :ensure t +(unless (string-equal user-login-name "POH") + (use-package notmuch + :ensure t + ) ) #+end_src