swconfig/lazyvim/lua/plugins/conform.lua

20 lines
504 B
Lua
Raw Normal View History

2024-03-08 12:02:51 +08:00
return {
"stevearc/conform.nvim",
dependencies = { "clangd_extensions.nvim", "mason.nvim" },
opts = function()
local opts = {
formatters_by_ft = {
cpp = { "clang_format" },
c = { "clang_format" },
lua = { "stylua" },
fish = { "fish_indent" },
sh = { "shfmt" },
json = {
"fixjson",
},
},
}
return opts
end,
}