mirror of
https://github.com/dam9000/kickstart-modular.nvim.git
synced 2026-03-30 09:41:32 +00:00
14 lines
332 B
Lua
14 lines
332 B
Lua
-- Highlight todo, notes, etc in comments
|
|
return {
|
|
{
|
|
'folke/todo-comments.nvim',
|
|
event = 'VimEnter',
|
|
dependencies = { 'nvim-lua/plenary.nvim' },
|
|
---@module 'todo-comments'
|
|
---@type TodoOptions
|
|
---@diagnostic disable-next-line: missing-fields
|
|
opts = { signs = false },
|
|
},
|
|
}
|
|
-- vim: ts=2 sts=2 sw=2 et
|