summaryrefslogtreecommitdiff
path: root/nvim/lua/config
diff options
context:
space:
mode:
authorSkladnayazebra <skladnayazebra@gmail.com>2026-07-14 13:42:53 +0200
committerSkladnayazebra <skladnayazebra@gmail.com>2026-07-14 13:42:53 +0200
commit19e429745f907523cbcb8f68046edbbec1a533c3 (patch)
treecb3b3d46fe85e4bfa23c43cae7975b4c7dd06549 /nvim/lua/config
parentd80a2aac1aa7be216dc01437f85b281a64e09687 (diff)
nvin: add prettier for yaml
Diffstat (limited to 'nvim/lua/config')
-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 d7244ac..db536b8 100644
--- a/nvim/lua/config/formatters.lua
+++ b/nvim/lua/config/formatters.lua
@@ -6,5 +6,6 @@ require("conform").setup({
typescript = { "prettierd", "prettier", stop_after_first = true },
json = { "prettierd", "prettier", stop_after_first = true },
html = { "prettierd", "prettier", stop_after_first = true },
+ yaml = { "prettierd", "prettier", stop_after_first = true },
},
})