Use prettier instead of prettierd
I keep having issues with prettierd not working and prettier works just fine.
This commit is contained in:
@@ -5,15 +5,15 @@ local formatters_by_ft = {
|
|||||||
go = { "goimports" },
|
go = { "goimports" },
|
||||||
python = { "ruff_organize_imports", "ruff_format" },
|
python = { "ruff_organize_imports", "ruff_format" },
|
||||||
rust = { "rustfmt" },
|
rust = { "rustfmt" },
|
||||||
javascript = { "prettierd" },
|
javascript = { "prettier" },
|
||||||
javascriptreact = { "prettierd" },
|
javascriptreact = { "prettier" },
|
||||||
typescript = { "prettierd" },
|
typescript = { "prettier" },
|
||||||
typescriptreact = { "prettierd" },
|
typescriptreact = { "prettier" },
|
||||||
css = { "prettierd" },
|
css = { "prettier" },
|
||||||
markdown = { "prettierd" },
|
markdown = { "prettier" },
|
||||||
yaml = { "prettierd" },
|
yaml = { "prettier" },
|
||||||
lua = { "stylua" },
|
lua = { "stylua" },
|
||||||
json = { "prettierd" },
|
json = { "prettier" },
|
||||||
toml = { "taplo" },
|
toml = { "taplo" },
|
||||||
-- ["*"] = { "injected" },
|
-- ["*"] = { "injected" },
|
||||||
["_"] = { "trim_whitespace", "trim_newlines" },
|
["_"] = { "trim_whitespace", "trim_newlines" },
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ local ensure_installed = {
|
|||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
"ruff",
|
"ruff",
|
||||||
"prettierd",
|
"prettier",
|
||||||
"stylua",
|
"stylua",
|
||||||
"eslint",
|
"eslint",
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user