This commit is contained in:
2024-09-10 12:27:13 -07:00
parent 2f4b1b8fed
commit 943ad74f4a
2 changed files with 10 additions and 5 deletions

View File

@@ -81,7 +81,7 @@
(setq org-todo-keywords
'((sequence "NEXT(n)" "TODO(t)" "|" "DONE(d!)")
(sequence "ACTIVE(a)" "PROJ(p)" "READY(r)" "WAIT(w@/!)" "HOLD(h)" "BACKLOG(b)" "DOC(u)" "|" "COMPLETED(c)" "CANC(k@)")))
(sequence "ACTIVE(a)" "PROJ(p)" "READY(r)" "WAIT(w@/!)" "HOLD(h)" "BACKLOG(b)" "WORKOUT(wo)" "|" "CANC(k@)")))
(setq org-todo-keyword-faces
'(("NEXT" . "red") ("TODO" . "orange") ("WAIT" . "yellow") ("DONE" . "green")))
@@ -116,10 +116,12 @@
;; Create capture templates
(setq org-capture-templates
`(("t" "Tasks")
("tw" "Work Task" entry (file+olp "~/documents/org/agenda/todo.org" "Work")
"* TODO %?\n %U\n %a\n %i" :empty-lines 1)
("tp" "Personal Task" entry (file+olp "~/documents/org/agenda/todo.org" "Personal")
"* TODO %?\n %U\n %a\n %i" :empty-lines 1)))
("tw" "Work Task" entry (file+headline "~/documents/org/agenda/todo.org" "Work")
"* TODO %?\n %U\n %i" :empty-lines 1)
("tp" "Personal Task" entry (file+headline "~/documents/org/agenda/todo.org" "Personal")
"* TODO %?\n %U\n %i" :empty-lines 1)
("tb" "Backlog Task" entry (file+headline "~/documents/org/agenda/todo.org" "Backlog")
"* BACKLOG %?\n %U\n %i" :empty-lines 1)))
;; Tell Org to stop indenting inside of org source blocks.
(setq org-edit-src-content-indentation 0)