Mon Jul 29 08:20:47 -03 2024
This commit is contained in:
parent
f74ae10acc
commit
a74c09f951
|
@ -53,7 +53,18 @@ conform.formatters_by_ft = {
|
||||||
javascript = { 'prettierd ' },
|
javascript = { 'prettierd ' },
|
||||||
typescript = { 'prettierd ' },
|
typescript = { 'prettierd ' },
|
||||||
ruby = { 'rubocop' },
|
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 {
|
return {
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue