fix: remove deprecated opt for conform.nvim

- changed lsp_fallback -> lsp_format
- updated format_on_save function to reflect change above
This commit is contained in:
iton0 2024-08-01 17:04:41 -04:00
parent 1860184830
commit c648d87d67
1 changed files with 8 additions and 2 deletions

View File

@ -637,7 +637,7 @@ require('lazy').setup({
{
'<leader>f',
function()
require('conform').format { async = true, lsp_fallback = true }
require('conform').format { async = true, lsp_format = 'fallback' }
end,
mode = '',
desc = '[F]ormat buffer',
@ -650,9 +650,15 @@ require('lazy').setup({
-- have a well standardized coding style. You can add additional
-- languages here or re-enable it for the disabled ones.
local disable_filetypes = { c = true, cpp = true }
local lsp_format_opt
if disable_filetypes[vim.bo[bufnr].filetype] then
lsp_format_opt = 'never'
else
lsp_format_opt = 'fallback'
end
return {
timeout_ms = 500,
lsp_fallback = not disable_filetypes[vim.bo[bufnr].filetype],
lsp_format = lsp_format_opt,
}
end,
formatters_by_ft = {