diff options
author | bd <bdunahu@operationnull.com> | 2024-09-02 10:11:20 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2024-09-02 10:11:20 -0400 |
commit | 3a0744e976cb0e99591409f774dd34eaa5748962 (patch) | |
tree | d578c4082c716bff12410e807244bef5379a7eb3 /.config | |
parent | e8c81d4a36479391fa8f9f358cc878b6022bcb4b (diff) |
Add new org-capture templates
Diffstat (limited to '.config')
-rw-r--r-- | .config/emacs/modules/bd--org.el | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/.config/emacs/modules/bd--org.el b/.config/emacs/modules/bd--org.el index c131cec..12699eb 100644 --- a/.config/emacs/modules/bd--org.el +++ b/.config/emacs/modules/bd--org.el @@ -62,7 +62,14 @@ each org file open." ("agenda_tasks.org" :maxlevel . 1)) org-capture-templates - `(("s" " Self") + `(("c" " College") + ("cs" "Software Engineering Theory" entry (file+olp ,agenda-file "CS520") + "* TODO %?\n DEADLINE: %^t") + ("cm" "Combinatorics/Graph Theory" entry (file+olp ,agenda-file "CS575") + "* TODO %?\n DEADLINE: %^t") + ("cc" "Compiler Techniques" entry (file+olp ,agenda-file "CS610") + "* TODO %?\n DEADLINE: %^t") + ("s" " Self") ("si" "Idea" entry (file+olp ,agenda-file "Idea / Return") "* TODO %?\n %u") ("sc" "Context" entry (file+olp ,agenda-file "Idea / Return") |