ADD reference targets I forgot

This commit is contained in:
Nathan Dwarshuis 2024-01-12 09:52:36 -05:00
parent 5234596b4c
commit 003ea4b0f9
1 changed files with 8 additions and 1 deletions

View File

@ -1715,7 +1715,10 @@ Additionally, using specialized file variables makes it much easier and faster t
org-x-action-files (list "general.org" "projects/*.org")
org-x-incubator-files (list "incubator.org")
org-x-capture-file "capture.org"
org-x-reference-files (list "reference/idea.org" "reference/questions.org")
org-x-reference-files (list "reference/idea.org"
"reference/questions.org"
"reference/record.org"
"reference/resources.org")
org-x-endpoint-goal-file "reference/goals/endpoint.org"
org-x-lifetime-goal-file "reference/goals/lifetime.org"
org-x-survival-goal-file "reference/goals/survival.org"
@ -1743,6 +1746,10 @@ Save all org buffers 1 minute before the hour, then commit whatever I saved.
(cmd (format "autogit \"%s\" \"%s\"" org-directory journal-path)))
(async-shell-command cmd)))
;; TODO don't hardcode this name
(add-to-list 'display-buffer-alist
'("\\*Async Shell Command\\*" display-buffer-no-window))
(nd/run-at-hour-minute 1 59 3600 #'nd/org-save-all-org-buffers)
(nd/run-at-hour-minute 1 0 3600 #'nd/org-commit-repos)
#+END_SRC