kickstart.nvim/lua/custom/plugins/nvim-colorizer.lua

10 lines
241 B
Lua
Raw Normal View History

2023-02-28 16:37:22 +05:30
return {
'norcalli/nvim-colorizer.lua',
2023-02-28 17:18:54 +05:30
config = function()
require'colorizer'.setup {
'*', -- Highlight all files, but customize some others.
css = {css = true} -- Enable parsing rgb(...) functions in css.
}
2023-02-28 16:37:22 +05:30
end
}