-- NOTE: That plugin is old and archived --but works very well. -- --[ -- This plugin will add a small example of a color next to the associated usage of that color in the code. -- -- -- WARNING: It use hexokinase that is a external tool. --] return { "RRethy/vim-hexokinase", enabled = true, build = "make hexokinase", config = function() vim.g.Hexokinase_highlighters = { "virtual" } -- Alternatives options: -- vim.g.Hexokinase_ftEnabled = ['css', 'html', 'javascript'] -- vim.g.Hexokinase_ftOptInPatterns = { -- 'css': 'full_hex,rgb,rgba,hsl,hsla,colour_names', -- 'html': 'full_hex,rgb,rgba,hsl,hsla,colour_names' -- } -- vim.g.Hexokinase_highlighters = [ -- 'virtual', -- 'sign_column', -- 'background', -- 'backgroundfull', -- 'foreground', -- 'foregroundfull' -- } end, }