TODO template current date moved into todo line
This commit is contained in:
@@ -19,7 +19,7 @@ vim.api.nvim_create_autocmd('LspAttach', {
|
||||
vim.keymap.set("n", '<space>F', ":silent !dx fmt --file %<cr>", { desc = "DX format rsx! regions", unpack(bufopts) })
|
||||
vim.keymap.set("v", "<space>f", LSPRangeFormatFunction, { desc = "LSP Format region" })
|
||||
|
||||
-- 2024-09-09 - some slaptop commands for diagnostics, symbols and code actions
|
||||
-- 2024-09-09 - some commands for diagnostics, symbols and code actions
|
||||
local fzf = require('fzf-lua')
|
||||
vim.keymap.set('n', '<space>d', fzf.diagnostics_document, { desc = "Document diagnostics" })
|
||||
vim.keymap.set('n', '<space>D', fzf.diagnostics_workspace, { desc = "Workspace diagnostics" })
|
||||
|
||||
@@ -209,7 +209,7 @@ require("lazy").setup({
|
||||
org_default_notes_file = sl_opt.org_default_notes_file,
|
||||
org_archive_location = sl_opt.org_archive_location,
|
||||
org_capture_templates = {
|
||||
t = { description = 'Task', template = "* TODO %?\n %u" },
|
||||
t = { description = 'Task', template = "* TODO %u %?" },
|
||||
i = { description = 'Interruption', template = "* STARTED [#A] %^{Working on}\n %U\n %a\n" },
|
||||
},
|
||||
org_todo_keywords = { 'TODO(t)', 'STARTED(s)', 'PLANNED(p)', '|', 'DONE(d)', 'UNPLANNED(u)' },
|
||||
|
||||
Reference in New Issue
Block a user