feat(working): first working condition

This commit is contained in:
darwincereska
2025-11-19 08:59:51 -05:00
parent 5a5c81eb60
commit c86f52f5fb
31 changed files with 789 additions and 283 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,
}