-- Nvim-Colorizer Plugin return { "catgoose/nvim-colorizer.lua", config = function() require("colorizer").setup({ filetypes = { "*", -- Highlight all filetypes css = { rgb_fn = true }, -- Enable parsing of RGB functions in CSS html = { names = false }, -- Disable parsing of "names" like blue, red, green, etc in HTML }, }) end, }