diff options
author | bd <bdunahu@colostate.edu> | 2024-01-11 21:23:34 -0700 |
---|---|---|
committer | bd <bdunahu@colostate.edu> | 2024-01-11 21:23:34 -0700 |
commit | a46b4ee2218927096003a6861441cd10fb59bf66 (patch) | |
tree | a85c69ee57ea1f6fc4c20f42fe327d29416484c2 /.config/emacs/modules/bd--org.el | |
parent | 1ced565816120bfcc351daf9fc3a4e851162e3b7 (diff) |
Changed shell preferences, org capture templates, fixed vali.scm
Diffstat (limited to '.config/emacs/modules/bd--org.el')
-rw-r--r-- | .config/emacs/modules/bd--org.el | 25 |
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) |