From fd81dfe9d6e59e56e1c3a057a3cc14cb6db23b96 Mon Sep 17 00:00:00 2001 From: Marc Pohling Date: Thu, 19 Dec 2019 14:46:15 +0100 Subject: [PATCH] fixed buggy file paths for org --- init.org | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/init.org b/init.org index 05ac5f1..e32b1d8 100644 --- a/init.org +++ b/init.org @@ -399,9 +399,13 @@ Windows Theme: org-tempo ;; easy templates ))) (setq org-default-notes-file (concat MY--PATH_ORG_FILES "notes.org") - org-agenda-files (list MY--PATH_ORG_FILES - MY--PATH_ORG_FILES_MOBILE) - org-id-locations-file (concat MY--PATH_USER_LOCAL ".org-id-locations") + org-agenda-files (list (concat MY--PATH_ORG_FILES "notes.org") + (concat MY--PATH_ORG_FILES "projects.org") + (concat MY--PATH_ORG_FILES "todo.org"))) + (when *linux* + (setq org-agenda-files (list org-agenda-files + MY--PATH_ORG_FILES_MOBILE))) + (setq org-id-locations-file (concat MY--PATH_USER_LOCAL ".org-id-locations") org-log-into-drawer "LOGBOOK") ;; some display customizations