16 lines
342 B
Lua
16 lines
342 B
Lua
|
return {
|
||
|
'stevearc/conform.nvim',
|
||
|
opts = {},
|
||
|
config = function ()
|
||
|
require('conform').setup({
|
||
|
formatters_by_ft = {
|
||
|
cpp = { 'clang-format' }
|
||
|
},
|
||
|
format_on_save = {
|
||
|
timeout_ms = 500,
|
||
|
lsp_format = 'fallback'
|
||
|
}
|
||
|
})
|
||
|
end
|
||
|
}
|