Added keybind for todo comments telescope search

This commit is contained in:
2025-01-24 18:25:37 +11:00
parent 5fea981e2e
commit d1a9f40a4a
2 changed files with 13 additions and 6 deletions

View File

@@ -1,8 +1,12 @@
return {
'folke/todo-comments.nvim',
event = 'VimEnter',
dependencies = {
'nvim-lua/plenary.nvim'
},
opts = {}
"folke/todo-comments.nvim",
event = "VimEnter",
dependencies = {
"nvim-lua/plenary.nvim",
},
opts = {},
config = function()
require("todo-comments").setup()
vim.keymap.set("n", "<leader>ts", ":TodoTelescope cwd=")
end,
}