summaryrefslogtreecommitdiff
path: root/.config/emacs/modules/bd--org.el
diff options
context:
space:
mode:
Diffstat (limited to '.config/emacs/modules/bd--org.el')
-rw-r--r--.config/emacs/modules/bd--org.el25
1 files changed, 16 insertions, 9 deletions
diff --git a/.config/emacs/modules/bd--org.el b/.config/emacs/modules/bd--org.el
index c4ade63..c6e6d04 100644
--- a/.config/emacs/modules/bd--org.el
+++ b/.config/emacs/modules/bd--org.el
@@ -43,25 +43,31 @@ each org file open."
org-log-into-drawer "history"
org-todo-keywords
- '((sequence "TODO(t)" "NEXT(n!)" "|" "DONE(d)" "CANC(c)"))
+ '((sequence "TODO(t)" "NEXT(n!)" "HOLD(h!)" "|" "DONE(d)" "CANC(c)"))
org-refile-targets ; refile into the headings of these files, not tags
'(("archived_tasks.org" :maxlevel . 1)
("agenda_tasks.org" :maxlevel . 1))
org-capture-templates
- `(("t" " Tasks")
- ("ts" "Software Testing" entry (file+olp ,agenda-file "CS415")
+ `(("c" " College")
+ ("cs" "Software Testing" entry (file+olp ,agenda-file "CS415")
"* TODO %?\n DEADLINE: %^t")
- ("tm" "Machine Learning" entry (file+olp ,agenda-file "CS445")
+ ("cm" "Machine Learning" entry (file+olp ,agenda-file "CS445")
"* TODO %?\n DEADLINE: %^t")
- ("tp" "Programming Languages" entry (file+olp ,agenda-file "CS454")
+ ("cp" "Programming Languages" entry (file+olp ,agenda-file "CS454")
"* TODO %?\n DEADLINE: %^t")
- ("tc" "Creative Writing" entry (file+olp ,agenda-file "E210")
+ ("cc" "Creative Writing" entry (file+olp ,agenda-file "E210")
"* TODO %?\n DEADLINE: %^t")
("s" " Self")
- ("s" "Unsorted Task" entry (file+olp ,agenda-file "Self")
- "* TODO %?\n %^t\n %a"))
+ ("si" "Idea" entry (file+olp ,agenda-file "Idea / Return")
+ "* TODO %?\n %t")
+ ("sc" "Context" entry (file+olp ,agenda-file "Idea / Return")
+ "* TODO %?\n %a")
+ ("st" "Deadline" entry (file+olp ,agenda-file "Deadline")
+ "* TODO %?\n DEADLINE: %^t")
+ ("sb" "Book" entry (file+olp ,agenda-file "Book List")
+ "* TODO %?\n %t"))
org-agenda-custom-commands
'(("S" "Standard Block Agenda"
@@ -81,7 +87,8 @@ each org file open."
(org-agenda-block-separator nil)
(org-agenda-entry-types '(:deadline))
(org-agenda-skip-function '(org-agenda-skip-entry-if 'todo 'done))
- (org-agenda-overriding-header "\nFuture Deadlines (+21d)\n")))))))
+ (org-agenda-overriding-header "\nFuture Deadlines (+21d)\n"))))))
+ org-agenda-restore-windows-after-quit t)
(provide 'bd--org)