mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 12:15:29 +00:00
23 lines
345 B
Lua
23 lines
345 B
Lua
-- https://github.com/norcalli/nvim-colorizer.lua
|
|
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",
|
|
})
|