Add colorizer

This commit is contained in:
Martin Larsson 2024-01-20 17:26:56 +01:00
parent 6b8327e38e
commit fc96fc96fc

View file

@ -0,0 +1,17 @@
return {
"norcalli/nvim-colorizer.lua",
config = function()
require("colorizer").setup({
DEFAULT_OPTIONS = {
RGB = true,
RRGGBB = true,
names = false,
RRGGBBAA = true,
css = true,
css_fn = true,
mode = "background",
},
"*",
})
end,
}