feat(nvim): add org templates for tasks & journal

This commit is contained in:
Price Hiller 2023-11-01 08:57:16 -05:00
parent 71b8fae291
commit 3661d39554
No known key found for this signature in database

View File

@ -31,6 +31,17 @@ return {
org_startup_folded = "inherit",
calendar_week_start_day = 0,
org_agenda_start_on_weekday = 0,
org_capture_templates = {
t = {
description = "Todo",
template = "* TODO %?\n %u",
},
j = {
description = "Journal",
template = "\n** %U :journal:\n\n%?",
target = "~/Notes/journal/%<%Y-%m-%d>.org"
},
},
emacs_config = {
config_path = "$HOME/.config/emacs/init.el"
}