diff --git a/nvim/lua/plugs/colorizer.lua b/nvim/lua/plugs/colorizer.lua new file mode 100644 index 0000000..f22cf19 --- /dev/null +++ b/nvim/lua/plugs/colorizer.lua @@ -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, +}