Add todo-comments plugin with shortcuts for finding TODO comments

This commit is contained in:
Daniel McKnight 2025-09-04 18:10:03 -07:00
parent 19b9731931
commit 65f8d967df

View file

@ -12,7 +12,7 @@ return {
"query",
"markdown",
"markdown_inline",
"bash",
"bash",
"json",
"jsonc",
"python",
@ -53,4 +53,11 @@ return {
})
end,
},
{
"folke/todo-comments.nvim",
dependencies = { "nvim-lua/plenary.nvim" },
opts = {},
},
vim.keymap.set("n", "<leader>ct", ":TodoQuickFix<CR>", { desc = "Show TODO" }),
vim.keymap.set("n", "<leader>fc", ":TodoTelescope<CR>", { desc = "Show TODO" }),
}