summaryrefslogtreecommitdiff
path: root/nvim
diff options
context:
space:
mode:
authorSkladnayazebra <skladnayazebra@gmail.com>2026-08-07 22:18:29 +0200
committerSkladnayazebra <skladnayazebra@gmail.com>2026-08-07 22:19:33 +0200
commit88f6543cc068582d3d47567beae20fa33904fb96 (patch)
tree117f66bd08e739a4016d6cfafe5da88272eb270b /nvim
parenta2a924cc24d2aa55c45db4467b85d96446a2605f (diff)
nvim: xml formatter
Diffstat (limited to 'nvim')
-rw-r--r--nvim/lua/config/formatters.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/nvim/lua/config/formatters.lua b/nvim/lua/config/formatters.lua
index db536b8..3d7121c 100644
--- a/nvim/lua/config/formatters.lua
+++ b/nvim/lua/config/formatters.lua
@@ -7,5 +7,6 @@ require("conform").setup({
json = { "prettierd", "prettier", stop_after_first = true },
html = { "prettierd", "prettier", stop_after_first = true },
yaml = { "prettierd", "prettier", stop_after_first = true },
+ xml = { "xmllint" },
},
})