feat(update): update

This commit is contained in:
darwincereska
2025-12-01 15:17:21 -05:00
parent fd83a29f1e
commit de8c6245ec
31 changed files with 13 additions and 13 deletions

View File

@@ -0,0 +1,20 @@
return {
"norcalli/nvim-colorizer.lua",
event = { "BufReadPost", "BufNewFile" }, -- load on file open
config = function()
require("colorizer").setup(
{ "*" }, -- highlight colors in all files
{
RGB = true, -- #RGB
RRGGBB = true, -- #RRGGBB
names = true, -- CSS color names
RRGGBBAA = true, -- #RRGGBBAA
rgb_fn = true, -- css rgb() functions
hsl_fn = true, -- css hsl() functions
css = true, -- enable all css features
css_fn = true, -- enable all css functions
}
)
end,
}