ADD meeting template
This commit is contained in:
parent
f1d9591086
commit
a49b8d43a4
16
etc/conf.org
16
etc/conf.org
|
@ -2352,6 +2352,9 @@ I use tags for agenda filtering (primarily for GTD contexts, see below). Each ta
|
||||||
;; catchall to mark important headings, usually for meetings
|
;; catchall to mark important headings, usually for meetings
|
||||||
(,org-x-tag-flagged . ?f)
|
(,org-x-tag-flagged . ?f)
|
||||||
|
|
||||||
|
;; a tag to make meetings suck less
|
||||||
|
(,org-x-tag-meeting . ?g)
|
||||||
|
|
||||||
;; life categories, used for gtd priorities
|
;; life categories, used for gtd priorities
|
||||||
(:startgroup)
|
(:startgroup)
|
||||||
(,org-x-tag-environmental . ?E)
|
(,org-x-tag-environmental . ?E)
|
||||||
|
@ -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"
|
"DEADLINE: %(nd/org-timestamp-future 1)\n"
|
||||||
"%a\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)
|
("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
|
;; for capturing web pages with web browser
|
||||||
("p" "org-protocol" entry (file ,capfile)
|
("p" "org-protocol" entry (file ,capfile)
|
||||||
|
|
|
@ -125,6 +125,10 @@
|
||||||
(org-x-prepend-char org-x-tag-misc-prefix "flag")
|
(org-x-prepend-char org-x-tag-misc-prefix "flag")
|
||||||
"Tag denoting a flagged task.")
|
"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
|
(defconst org-x-tag-environmental
|
||||||
(org-x-prepend-char org-x-tag-category-prefix "env")
|
(org-x-prepend-char org-x-tag-category-prefix "env")
|
||||||
"Tag denoting an environmental life category.")
|
"Tag denoting an environmental life category.")
|
||||||
|
|
Loading…
Reference in New Issue