[ADD] xml server configs

This commit is contained in:
Daveanand Mannie
2025-10-17 23:49:31 -04:00
parent d2ca336b20
commit 0279fb89f6
3 changed files with 35 additions and 12 deletions

View File

@@ -1,14 +1,14 @@
return {
"stevearc/conform.nvim",
opts = {
formatters_by_ft = {
-- python = { "ruff" },
python = { "black" },
javascript = { "biome" },
go = {'goimports', 'gofumpt'}
},
},
dependencies = {
"mason.nvim",
},
"stevearc/conform.nvim",
opts = {
formatters_by_ft = {
python = { "black" },
javascript = { "biome" },
go = { "goimports", "gofumpt" },
xml = { "lemminx" },
},
},
dependencies = {
"mason.nvim",
},
}