mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-21 16:39:04 +02:00
12 lines
353 B
Lua
12 lines
353 B
Lua
|
local status_ok, colorizer_cfg = pcall(require, "colorizer")
|
||
|
if not status_ok then
|
||
|
return
|
||
|
end
|
||
|
colorizer_cfg.setup({
|
||
|
filetypes = {
|
||
|
"*", -- 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
|
||
|
},
|
||
|
})
|