1
0
Fork 0
dotfiles/.config/nvim/lua/plugins/config/todo-comments.lua
Luca Bilke fd6133f89e fixes
2022-10-29 16:53:13 +02:00

9 lines
171 B
Lua

local status_ok, todo_comments = pcall(require, 'todo-comments')
if not status_ok then
return
end
todo_comments.setup({
highlight = {
comments_only = false
}
})