From 4398c381e6637d71da5938833ccc2c592c6fb2cf Mon Sep 17 00:00:00 2001 From: Marc Date: Sat, 14 Dec 2019 18:44:04 +0000 Subject: [PATCH] * init.el: fixed org-journal error for work config --- init.org | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/init.org b/init.org index 6c2cb54..007a0fe 100644 --- a/init.org +++ b/init.org @@ -115,7 +115,6 @@ ("work_remote" (progn (defvar MY--PATH_ORG_FILES "p:/Eigene Dateien/Notizen/") - (defvar MY--PATH-ORG-JOURNAL "p:/Eigene Dateien/Notizen/Journal/") (defvar MY--PATH_START "p:/Eigene Dateien/Notizen/")))) (setq bookmark-default-file (concat MY--PATH_USER_LOCAL "bookmarks")) @@ -465,12 +464,13 @@ Vorerst deaktiviert, Nutzen evtl. nicht vorhanden [[https://github.com/bastibe/org-journal][Source]] #+BEGIN_SRC emacs-lisp +(unless (string-equal me/whoami "work-remote") (use-package org-journal :ensure t :defer t - :custom - (org-journal-dir MY--PATH_ORG_JOURNAl) - (org-journal-enable-agenda-integration t)) + :config + (setq org-journal-dir MY--PATH_ORG_JOURNAL + org-journal-enable-agenda-integration t))) #+END_SRC * ivy / counsel / swiper :PROPERTIES: