Files
nvim-dotfile/lua/plugins/conform.lua
2025-10-20 17:27:20 +08:00

20 lines
389 B
Lua

return {
{
"stevearc/conform.nvim",
optional = true,
opts = {
formatters_by_ft = {
["c"] = { "clang_format" },
["cpp"] = { "clang_format" },
["cc"] = { "clang_format" },
["c++"] = { "clang_format" },
},
formatters = {
--clang-format = {
--prepend_args = {"-style=google"},
--},
},
},
},
}