Compare commits

...

2 Commits

Author SHA1 Message Date
Marcel Kapfer 69b270cd50
Include work todos in org agenda 2021-11-03 22:04:59 +01:00
Marcel Kapfer 3714176fec
Org capture template for work 2021-11-03 22:04:42 +01:00
1 changed files with 4 additions and 3 deletions

View File

@ -1003,6 +1003,8 @@ Define org-capture templates.
(setq org-capture-templates
'(("t" "Normal task" entry (file "~/org/inbox.org")
"* TODO %?\n :PROPERTIES:\n :CREATED: %U\n :END:")
("w" "Work task" entry (file "~/org/work.inbox.org")
"* TODO %?\n :PROPERTIES:\n :CREATED: %U\n :END:")
("e" "E-Mail needing a reply" entry (file "~/org/emails.org")
"* TODO Reply: %a\n :PROPERTIES:\n :CREATED: %U\n :END:"
:immediate-finish t)
@ -1076,13 +1078,12 @@ Finally define the org-agenda display using [[https://github.com/alphapapa/org-s
(org-super-agenda-groups
'((:name "High Priority" :priority "A")
(:name "Inbox" :file-path ".*/org/inbox\\.org$")
(:name "[Work] Inbox" :file-path ".*/org/work\\.inbox\\.org$")
(:name "Emails" :file-path ".*/org/emails\\.org$")
(:name "Next" :todo "NEXT")
(:name "Started" :todo "STARTED")
(:name "Bachelor Thesis" :category "BA")
(:name "[Work] Projects" :file-path ".*/org/work\\.projects\\.org$")
(:name "Study" :and (:file-path ".*/org/study\\.org$" :not(:scheduled future)))
(:name "Öff-Ref" :tag "@oeffref")
(:name "FIN" :tag "@fin")
(:name "Reading" :file-path ".*/org/reading\\.org$")
(:name "Projects" :file-path ".*/org/projects\\.org$")
(:name "Habits" :habit t :order 100)