2 files changed,
5 insertions(+),
3 deletions(-)
Author:
Oleksandr Smirnov
olexsmir@gmail.com
Committed at:
2025-01-23 15:28:23 +0200
Parent:
aae2d21
jump to
| M | filetype.lua |
| M | lua/plugins/orgmode.lua |
M
filetype.lua
@@ -6,6 +6,7 @@ vim.filetype.add {
extension = { lock = "yaml", gotmpl = "gotmpl", + org_archive = "org", }, filename = { [".gitignore"] = "conf",
M
lua/plugins/orgmode.lua
@@ -29,10 +29,11 @@ { "akinsho/org-bullets.nvim", config = true },
}, ---@module "orgmode" ---@type OrgDefaultConfig + ---@diagnostic disable-next-line: missing-fields opts = { org_default_notes_file = orgpath "refile", org_agenda_files = orgpath("**/*", true), - org_todo_keywords = { "TODO(t)", "|", "DONE(d)" }, + org_todo_keywords = { "TODO(t)", "INB(i)", "|", "DONE(d)" }, org_hide_emphasis_markers = true, org_startup_indented = true, org_startup_folded = "content", -- "showeverything"@@ -51,10 +52,10 @@ },
org_capture_templates = { t = { description = "Task", - template = "* TODO %? :in:", + template = "* INB %?", target = orgpath "todo", }, - i = { description = "Inbox", template = "* %? :in:" }, + i = { description = "Inbox", template = "* INB %?" }, w = { description = "New vocab", template = "* %? :vocab:",