Mon Jul 29 08:20:47 -03 2024

This commit is contained in:
Felipe Magrassi 2024-07-29 08:20:47 -03:00
parent f74ae10acc
commit a74c09f951
1 changed files with 11 additions and 0 deletions

View File

@ -53,7 +53,18 @@ conform.formatters_by_ft = {
javascript = { 'prettierd ' },
typescript = { 'prettierd ' },
ruby = { 'rubocop' },
markdown = { 'markdownlint' },
}
conform.format_on_save = function(bufnr)
-- Disable "format_on_save lsp_fallback" for languages that don't
-- 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 }
return {
timeout_ms = 5000,
lsp_fallback = not disable_filetypes[vim.bo[bufnr].filetype],
}
end
return {
{