commit 923863b7f68255ba2c3cb1e3dd85c12f26f8e0b2 parent 4e6ec67c26184b5f9d8620ce4982dd3eb5b4df2b Author: Hugo Soucy <hugo.soucy@equisoft.com> Date: Mon, 15 Apr 2019 15:13:27 -0400 Add a capture template Diffstat:
M | partials/org.el | | | 10 | +++++++++- |
1 file changed, 9 insertions(+), 1 deletion(-)
diff --git a/partials/org.el b/partials/org.el @@ -10,5 +10,13 @@ ;; Org-mode settings (setq org-todo-keywords '((sequence "TODO" "INPROGRESS" "REVIEW" "WAITING" "DELEGATED" "DONE"))) - (setq org-agenda-files '("~/Nextcloud/Org")) +(setq org-capture-templates + '(("a" "My TODO task at WORK." entry + (file "~/Nextcloud/Org/tasks--job.org") + "**** TODO %? \n SCHEDULED: %t DEADLINE: 0") + ("b" "My TODO task at HOME." entry + (file "~/Nextcloud/Org/tasks.org") + "**** TODO %? \n SCHEDULED: %t DEADLINE: 0"))) + +;;; org.el ends here