summaryrefslogtreecommitdiff
path: root/nvim/lua
diff options
context:
space:
mode:
authorSkladnayazebra <skladnayazebra@gmail.com>2026-07-07 16:48:37 +0200
committerSkladnayazebra <skladnayazebra@gmail.com>2026-07-07 16:48:37 +0200
commita5905fc63b53951da5d6172956e3b845fcfa4fd4 (patch)
tree748dffe6f76683d3809ca3e213c4222696adb048 /nvim/lua
parent205cb16c64bc081e5caea8420a6885c08be88ec4 (diff)
nvim: add html formatter
Diffstat (limited to 'nvim/lua')
-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 31cfd90..d7244ac 100644
--- a/nvim/lua/config/formatters.lua
+++ b/nvim/lua/config/formatters.lua
@@ -5,5 +5,6 @@ require("conform").setup({
javascript = { "prettierd", "prettier", stop_after_first = true },
typescript = { "prettierd", "prettier", stop_after_first = true },
json = { "prettierd", "prettier", stop_after_first = true },
+ html = { "prettierd", "prettier", stop_after_first = true },
},
})