refactor(nvim): improve capture templates for orgmode

This commit is contained in:
Price Hiller 2024-10-01 15:23:08 -05:00
parent 1f160e3bb7
commit 391cfb3ccb
Signed by: Price
GPG Key ID: C3FADDE7A8534BEB

View File

@ -56,14 +56,18 @@ return {
n = { n = {
description = "Note", description = "Note",
template = "* %?", template = "* %?",
},
j = {
description = "Journal",
template = "* %?",
target = "~/Notes/journal.org", target = "~/Notes/journal.org",
datetree = true, datetree = true,
}, },
s = { s = {
description = "Snippet", description = "Snippet",
template = "* %? :snippet:", template = "* %?",
target = "~/Notes/snippets.org", target = "~/Notes/snippets.org",
datetree = true, datetree = false,
}, },
}, },
emacs_config = { emacs_config = {