refactor(nvim): use datetree for orgmode captures
Some checks failed
Check Formatting of Files / Check-Formatting (push) Failing after 1m17s
Some checks failed
Check Formatting of Files / Check-Formatting (push) Failing after 1m17s
This commit is contained in:
parent
08a19c6b25
commit
19ab39d2c3
@ -39,18 +39,21 @@ return {
|
|||||||
org_capture_templates = {
|
org_capture_templates = {
|
||||||
t = {
|
t = {
|
||||||
description = "Todo",
|
description = "Todo",
|
||||||
template = "* TODO %?\n%u",
|
template = "* TODO %?\nSCHEDULED: %T",
|
||||||
target = "~/Notes/todo/%<%Y-%m-%d>.org",
|
target = "~/Notes/todo.org",
|
||||||
|
datetree = true,
|
||||||
},
|
},
|
||||||
n = {
|
n = {
|
||||||
description = "Note",
|
description = "Note",
|
||||||
template = "* %?\n%u",
|
template = "* %?",
|
||||||
target = "~/Notes/journal/%<%Y-%m-%d>.org",
|
target = "~/Notes/journal.org",
|
||||||
|
datetree = true,
|
||||||
},
|
},
|
||||||
s = {
|
s = {
|
||||||
description = "Snippet",
|
description = "Snippet",
|
||||||
template = "* %? :snippet:\n%u",
|
template = "* %? :snippet:",
|
||||||
target = "~/Notes/snippets/%<%Y-%m-%d>.org",
|
target = "~/Notes/snippets.org",
|
||||||
|
datetree = true,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
emacs_config = {
|
emacs_config = {
|
||||||
|
Loading…
Reference in New Issue
Block a user