mirror of
https://github.com/marianozunino/nvim.git
synced 2025-06-28 10:33:49 -03:00
31 lines
489 B
Lua
31 lines
489 B
Lua
local M = {
|
|
"norcalli/nvim-colorizer.lua",
|
|
branch = "master",
|
|
}
|
|
|
|
M.config = function()
|
|
require("colorizer").setup({
|
|
filetypes = {
|
|
"typescript",
|
|
"typescriptreact",
|
|
"javascript",
|
|
"javascriptreact",
|
|
"css",
|
|
"html",
|
|
"astro",
|
|
"lua",
|
|
"go",
|
|
"golang",
|
|
"bash",
|
|
"sh",
|
|
},
|
|
user_default_options = {
|
|
names = false,
|
|
rgb_fn = true,
|
|
hsl_fn = true,
|
|
tailwind = "both",
|
|
},
|
|
})
|
|
end
|
|
|
|
return M
|