You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
471 B
28 lines
471 B
local M = { |
|
"NvChad/nvim-colorizer.lua", |
|
event = { "BufReadPost", "BufNewFile" }, |
|
} |
|
|
|
function M.config() |
|
require("colorizer").setup { |
|
filetypes = { |
|
"typescript", |
|
"typescriptreact", |
|
"javascript", |
|
"javascriptreact", |
|
"css", |
|
"html", |
|
"astro", |
|
"lua", |
|
}, |
|
user_default_options = { |
|
names = false, |
|
rgb_fn = true, |
|
hsl_fn = true, |
|
tailwind = "both", |
|
}, |
|
buftypes = {}, |
|
} |
|
end |
|
|
|
return M
|
|
|