This commit is contained in:
Dario48true 2025-02-26 11:03:07 +01:00
parent e3d3ab6680
commit 9c1281ef4f
7 changed files with 93 additions and 0 deletions

12
lua/plugins/conformer.lua Normal file
View file

@ -0,0 +1,12 @@
return {
"stevearc/conform.nvim",
opts = {
formatters_by_ft = {
lua = { "stylua" },
js = { "prettierd" },
html = { "prettierd" },
c = { "clang-format" },
cpp = { "clang-format" },
},
},
}