mirror of
https://github.com/StepanovPlaton/dotfiles.git
synced 2026-04-03 20:30:46 +04:00
17 lines
271 B
Lua
17 lines
271 B
Lua
return {
|
|
{
|
|
"folke/todo-comments.nvim",
|
|
dependencies = {
|
|
"nvim-lua/plenary.nvim",
|
|
"folke/trouble.nvim",
|
|
},
|
|
opts = {},
|
|
config = function()
|
|
require("todo-comments").setup()
|
|
end,
|
|
keys = {
|
|
{ "<LEADER>Ct", "<CMD>TroubleToggle todo<CR>" },
|
|
},
|
|
},
|
|
}
|