config/lvim/lua/plug/todo-comment.lua (view raw)
1 2 3 4 5 6 7 8 9 10 11 12
local M = {} function M.setup() local ok, todo_comments = pcall(require, "todo-comments") if not ok then return end todo_comments.setup {} end return M