-- The fastest Neovim colorizer. -- https://github.com/norcalli/nvim-colorizer.lua return { "nvim-colorizer.lua", lazy = false, after = function() require("colorizer").setup({ "*", -- Highlight all files, but customize some others. css = { rgb_fn = true }, -- Enable parsing rgb(...) functions in css. html = { names = false }, -- Disable parsing "names" like Blue or Gray }) end, }