Use prettier instead of prettierd

I keep having issues with prettierd not working and prettier works just
fine.
This commit is contained in:
2025-12-05 13:48:28 +01:00
parent 4e3d0500b9
commit d84bc8062e
2 changed files with 9 additions and 9 deletions

View File

@@ -5,15 +5,15 @@ local formatters_by_ft = {
go = { "goimports" },
python = { "ruff_organize_imports", "ruff_format" },
rust = { "rustfmt" },
javascript = { "prettierd" },
javascriptreact = { "prettierd" },
typescript = { "prettierd" },
typescriptreact = { "prettierd" },
css = { "prettierd" },
markdown = { "prettierd" },
yaml = { "prettierd" },
javascript = { "prettier" },
javascriptreact = { "prettier" },
typescript = { "prettier" },
typescriptreact = { "prettier" },
css = { "prettier" },
markdown = { "prettier" },
yaml = { "prettier" },
lua = { "stylua" },
json = { "prettierd" },
json = { "prettier" },
toml = { "taplo" },
-- ["*"] = { "injected" },
["_"] = { "trim_whitespace", "trim_newlines" },

View File

@@ -24,7 +24,7 @@ local ensure_installed = {
end,
},
"ruff",
"prettierd",
"prettier",
"stylua",
"eslint",
}