summaryrefslogtreecommitdiff
path: root/lua/config
diff options
context:
space:
mode:
Diffstat (limited to 'lua/config')
-rw-r--r--lua/config/orgmode.lua8
1 files changed, 8 insertions, 0 deletions
diff --git a/lua/config/orgmode.lua b/lua/config/orgmode.lua
index 82dac48..a7054dd 100644
--- a/lua/config/orgmode.lua
+++ b/lua/config/orgmode.lua
@@ -9,4 +9,12 @@ orgmode.setup_ts_grammar()
orgmode.setup {
org_agenda_files = { "~/.local/share/org/**/*" },
org_default_notes_file = "~/.local/share/org/refile.org",
+ org_agenda_templates = {
+ t = { description = "Task", template = "* TODO %?\n %u" },
+ m = {
+ description = "Meeting",
+ template = "* MEETING %? :MEETING:\n:LOGBOOK:\nCLOCK: %U\n:END:",
+ },
+ n = { description = "Note", template = "* NOTE %? :NOTE:%?\n %u" },
+ },
}