Files
nvim-modular/lua/kickstart/plugins/todo-comments.lua
2025-08-28 23:17:34 +02:00

23 lines
433 B
Lua

-- todo-comments
--
-- todo-comments is a lua plugin for Neovim >= 0.8.0 to highlight
-- and search for todo comments like TODO, HACK, BUG in your code base.
--
-- 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,
},
},
}