Files
vim/lua/custom/plugins/todos.lua
2023-05-17 08:16:28 +02:00

12 lines
295 B
Lua

return {
'folke/todo-comments.nvim',
requires = 'nvim-lua/plenary.nvim',
config = function()
require('todo-comments').setup {
-- your configuration comes here
-- or leave it empty to use the default settings
-- refer to the configuration section below
}
end,
}