move most important config to ansible
This commit is contained in:
22
roles/nvim/files/lua/config/plugins/todo-comments.lua
Normal file
22
roles/nvim/files/lua/config/plugins/todo-comments.lua
Normal file
@ -0,0 +1,22 @@
|
||||
return {
|
||||
'folke/todo-comments.nvim',
|
||||
dependencies = { 'nvim-lua/plenary.nvim' },
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user