Use lazy.nvim

This commit is contained in:
Saeed Afzal
2023-04-29 12:34:36 +01:00
parent 17ab6018fb
commit 86cc9b52ec
28 changed files with 308 additions and 493 deletions

19
lua/plugins/colorizer.lua Normal file
View File

@@ -0,0 +1,19 @@
return {
"NvChad/nvim-colorizer.lua",
event = "BufEnter",
opts = {
filetypes = {
"*";
"!markdown";
},
user_default_options = {
RRGGBBAA = true,
AARRGGBB = true,
rgb_fn = true,
hsl_fn = true,
css = true,
css_fn = true,
sass = { enable = true }
}
}
}