misc settings

This commit is contained in:
Johannes Knopp
2025-01-13 22:19:32 +01:00
parent 862c6964bb
commit 5048949d2a
6 changed files with 65 additions and 28 deletions

View File

@ -1,5 +1,22 @@
return {
'folke/todo-comments.nvim',
dependencies = { 'nvim-lua/plenary.nvim' },
opts = {},
lazy = false,
config = function()
require("todo-comments").setup({
-- keywords = {
-- TODO = { icon = " ", color = "custom" },
-- },
-- colors = {
-- custom = { fg = "#FF0000", bg = "#000000" },
-- },
highlight = {
pattern = [[.*<(KEYWORDS)\s*]],
},
search = {
pattern = [[\b(KEYWORDS)\b]],
}
})
end
}