Don't use the LSP as a fallback when formatting

This commit is contained in:
Oliver Davies 2024-07-08 16:35:33 +01:00
parent 212875603b
commit 79afe5b876

View file

@ -17,7 +17,7 @@ vim.api.nvim_create_autocmd("BufWritePre", {
callback = function(args)
conform.format {
bufnr = args.buf,
lsp_fallback = true,
lsp_fallback = false,
quiet = true,
}
end,