Browse Source

fixed buggy file paths for org

master
Marc Pohling 4 years ago
parent
commit
fd81dfe9d6
1 changed files with 7 additions and 3 deletions
  1. 10
      init.org

10
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

Loading…
Cancel
Save