You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
my-nvim-lua/lua/custom/plugins/configs/todo-comments.lua

18 lines
174 B
Lua

local present, todo = pcall(require, "todo-comments")
if not present then
return
end
M = {}
local config = {
}
M.setup = function()
todo.setup(config)
end
return M