mirror of https://github.com/LazyVim/starter
21 lines
346 B
Lua
21 lines
346 B
Lua
|
return {
|
||
|
"MunifTanjim/prettier.nvim",
|
||
|
config = {
|
||
|
bin = "prettier", -- or `'prettierd'` (v0.23.3+)
|
||
|
filetypes = {
|
||
|
"css",
|
||
|
"graphql",
|
||
|
"html",
|
||
|
"javascript",
|
||
|
"javascriptreact",
|
||
|
"json",
|
||
|
"less",
|
||
|
"markdown",
|
||
|
"scss",
|
||
|
"typescript",
|
||
|
"typescriptreact",
|
||
|
"yaml",
|
||
|
},
|
||
|
},
|
||
|
}
|