disable format on save
This commit is contained in:
parent
e86b0829e0
commit
a029126199
20
init.lua
20
init.lua
|
@ -640,16 +640,16 @@ require('lazy').setup({
|
|||
},
|
||||
opts = {
|
||||
notify_on_error = false,
|
||||
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, python = true }
|
||||
return {
|
||||
timeout_ms = 500,
|
||||
lsp_fallback = not disable_filetypes[vim.bo[bufnr].filetype],
|
||||
}
|
||||
end,
|
||||
-- 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, python = true }
|
||||
-- return {
|
||||
-- timeout_ms = 500,
|
||||
-- lsp_fallback = not disable_filetypes[vim.bo[bufnr].filetype],
|
||||
-- }
|
||||
-- end,
|
||||
formatters_by_ft = {
|
||||
lua = { 'stylua' },
|
||||
cpp = { 'clang-format' },
|
||||
|
|
Loading…
Reference in New Issue