24 lines
426 B
Lua
24 lines
426 B
Lua
|
return {
|
||
|
"MunifTanjim/prettier.nvim",
|
||
|
config = function()
|
||
|
prettier.setup({
|
||
|
bin = 'prettierd', -- or `'prettierd'` (v0.23.3+)
|
||
|
filetypes = {
|
||
|
"css",
|
||
|
"graphql",
|
||
|
"html",
|
||
|
"javascript",
|
||
|
"javascriptreact",
|
||
|
"json",
|
||
|
"less",
|
||
|
"markdown",
|
||
|
"scss",
|
||
|
"typescript",
|
||
|
"typescriptreact",
|
||
|
"yaml",
|
||
|
"astro",
|
||
|
},
|
||
|
})
|
||
|
end
|
||
|
}
|