feat(lazy): allow for hot loading plugin specs

This commit is contained in:
2024-04-21 03:20:28 +02:00
parent 2e36ef05d9
commit ac1e40bfee
31 changed files with 683 additions and 831 deletions
+9 -7
View File
@@ -1,14 +1,16 @@
local function setup()
require("colorizer").setup({
-- https://github.com/NvChad/nvim-colorizer.lua
---@type LazyPluginSpec
return {
"NvChad/nvim-colorizer.lua",
opts = {
user_default_options = {
RRGGBBAA = true,
AARRGGBB = true,
css = true,
mode = "virtualtext",
tailwind = true,
sass = { enable = true, },
sass = { enable = true },
},
})
end
return setup
},
}