Checkboxes -> TODOs
This commit is contained in:
parent
b59a27a160
commit
623195e312
1 changed files with 4 additions and 4 deletions
|
@ -31,7 +31,7 @@ It is used in Doom's default `org-capture-templates'.")
|
||||||
(defvar org-capture-templates
|
(defvar org-capture-templates
|
||||||
'(("t" "Personal todo" entry
|
'(("t" "Personal todo" entry
|
||||||
(file+headline +org-capture-todo-file "Inbox")
|
(file+headline +org-capture-todo-file "Inbox")
|
||||||
"* [ ] %?\n%i\n%a" :prepend t :kill-buffer t)
|
"* TODO %?\n%i\n%a" :prepend t :kill-buffer t)
|
||||||
("n" "Personal notes" entry
|
("n" "Personal notes" entry
|
||||||
(file+headline +org-capture-notes-file "Inbox")
|
(file+headline +org-capture-notes-file "Inbox")
|
||||||
"* %u %?\n%i\n%a" :prepend t :kill-buffer t)
|
"* %u %?\n%i\n%a" :prepend t :kill-buffer t)
|
||||||
|
@ -41,13 +41,13 @@ It is used in Doom's default `org-capture-templates'.")
|
||||||
("p" "Templates for projects")
|
("p" "Templates for projects")
|
||||||
("pt" "Project todo" entry ; {project-root}/todo.org
|
("pt" "Project todo" entry ; {project-root}/todo.org
|
||||||
(file+headline +org-capture-project-todo-file "Inbox")
|
(file+headline +org-capture-project-todo-file "Inbox")
|
||||||
"* [ ] %?\n%i\n%a" :prepend t :kill-buffer t)
|
"* TODO %?\n%i\n%a" :prepend t :kill-buffer t)
|
||||||
("pn" "Project notes" entry ; {project-root}/notes.org
|
("pn" "Project notes" entry ; {project-root}/notes.org
|
||||||
(file+headline +org-capture-project-notes-file "Inbox")
|
(file+headline +org-capture-project-notes-file "Inbox")
|
||||||
"* [ ] %?\n%i\n%a" :prepend t :kill-buffer t)
|
"* TODO %?\n%i\n%a" :prepend t :kill-buffer t)
|
||||||
("pc" "Project changelog" entry ; {project-root}/changelog.org
|
("pc" "Project changelog" entry ; {project-root}/changelog.org
|
||||||
(file+headline +org-capture-project-notes-file "Unreleased")
|
(file+headline +org-capture-project-notes-file "Unreleased")
|
||||||
"* [ ] %?\n%i\n%a" :prepend t :kill-buffer t)))
|
"* TODO %?\n%i\n%a" :prepend t :kill-buffer t)))
|
||||||
|
|
||||||
|
|
||||||
(defvar org-default-notes-file nil) ; defined in org.el
|
(defvar org-default-notes-file nil) ; defined in org.el
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue