Files
nvim-modular/lua/kickstart/plugins/todo-comments.lua
2025-08-03 21:49:28 +02:00

16 lines
281 B
Lua

-- Todo Comments
-- https://github.com/folke/todo-comments.nvim
return {
-- Highlight todo, notes, etc in comments
{
'folke/todo-comments.nvim',
event = 'VimEnter',
dependencies = {
'nvim-lua/plenary.nvim'
},
opts = {
signs = false
}
},
}