dotfiles/config/lvim/lua/plug/todo-comment.lua
2021-10-03 17:31:30 +03:00

12 lines
167 B
Lua

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