42 lines
1.1 KiB
Lua
42 lines
1.1 KiB
Lua
|
return {
|
||
|
{
|
||
|
"williamboman/mason.nvim",
|
||
|
opts = function(_, opts)
|
||
|
table.insert(opts.ensure_installed, "prettier")
|
||
|
end,
|
||
|
},
|
||
|
{
|
||
|
"nvimtools/none-ls.nvim",
|
||
|
optional = true,
|
||
|
opts = function(_, opts)
|
||
|
local nls = require("null-ls")
|
||
|
opts.sources = opts.sources or {}
|
||
|
table.insert(opts.sources, nls.builtins.formatting.prettier)
|
||
|
end,
|
||
|
},
|
||
|
{
|
||
|
"stevearc/conform.nvim",
|
||
|
optional = true,
|
||
|
opts = {
|
||
|
formatters_by_ft = {
|
||
|
["javascript"] = { "prettier" },
|
||
|
["javascriptreact"] = { "prettier" },
|
||
|
["typescript"] = { "prettier" },
|
||
|
["typescriptreact"] = { "prettier" },
|
||
|
["vue"] = { "prettier" },
|
||
|
["css"] = { "prettier" },
|
||
|
["scss"] = { "prettier" },
|
||
|
["less"] = { "prettier" },
|
||
|
["html"] = { "prettier" },
|
||
|
["json"] = { "prettier" },
|
||
|
["jsonc"] = { "prettier" },
|
||
|
["yaml"] = { "prettier" },
|
||
|
["markdown"] = { "prettier" },
|
||
|
["markdown.mdx"] = { "prettier" },
|
||
|
["graphql"] = { "prettier" },
|
||
|
["handlebars"] = { "prettier" },
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
}
|