nvim-config/.config/nvim/lua/plugins/conform.lua

16 lines
342 B
Lua
Raw Permalink Normal View History

2024-10-21 08:08:26 +00:00
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
}