ADD meeting template

This commit is contained in:
Nathan Dwarshuis 2021-09-22 21:34:23 -04:00
parent f1d9591086
commit a49b8d43a4
2 changed files with 18 additions and 2 deletions

View File

@ -2351,6 +2351,9 @@ I use tags for agenda filtering (primarily for GTD contexts, see below). Each ta
;; catchall to mark important headings, usually for meetings
(,org-x-tag-flagged . ?f)
;; a tag to make meetings suck less
(,org-x-tag-meeting . ?g)
;; life categories, used for gtd priorities
(:startgroup)
@ -2469,9 +2472,18 @@ NOTE: Capitalized entries store a link to the capture along with writing to the
"DEADLINE: %(nd/org-timestamp-future 1)\n"
"%a\n"))
;; for interruptions that produce useful reference material
;; make meetings suck less
;; TODO use constants for the drawer names
("m" "meeting" entry (file ,capfile)
"* meeting with%?\t:%(eval org-x-tag-note):\n")
,(concat "* TODO%?\t:%(eval org-x-tag-meeting):\n"
"SCHEDULED: %^t\n"
":AGENDA_ITEMS:\n"
":END:\n"
":ACTION_ITEMS:\n"
":END:\n"
"attendees:\n\n"
"location:\n\n"
"notes:"))
;; for capturing web pages with web browser
("p" "org-protocol" entry (file ,capfile)

View File

@ -125,6 +125,10 @@
(org-x-prepend-char org-x-tag-misc-prefix "flag")
"Tag denoting a flagged task.")
(defconst org-x-tag-meeting
(org-x-prepend-char org-x-tag-misc-prefix "meeting")
"Tag denoting a meeting.")
(defconst org-x-tag-environmental
(org-x-prepend-char org-x-tag-category-prefix "env")
"Tag denoting an environmental life category.")