mirror of
https://github.com/olexsmir/dotfiles.git
synced 2026-01-15 08:41:34 +02:00
12 lines
167 B
Lua
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
|