mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 12:15:29 +00:00
30 lines
575 B
Lua
30 lines
575 B
Lua
-- The fastest Neovim colorizer
|
|
-- https://github.com/norcalli/nvim-colorizer.lua
|
|
return {
|
|
"norcalli/nvim-colorizer.lua",
|
|
config = function()
|
|
require("colorizer").setup({
|
|
"css",
|
|
"html",
|
|
"javascript",
|
|
"javascriptreact",
|
|
"typescript",
|
|
"typescriptreact",
|
|
"yaml",
|
|
"conf",
|
|
"lua",
|
|
}, {
|
|
RGB = true,
|
|
RRGGBB = true,
|
|
names = true,
|
|
RRGGBBAA = true,
|
|
rgb_fn = true,
|
|
hsl_fn = true,
|
|
css = true,
|
|
css_fn = true,
|
|
mode = "background",
|
|
tailwind = true,
|
|
})
|
|
end,
|
|
}
|