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 = {
|
opts = {
|
||||||
notify_on_error = false,
|
notify_on_error = false,
|
||||||
format_on_save = function(bufnr)
|
-- format_on_save = function(bufnr)
|
||||||
-- Disable "format_on_save lsp_fallback" for languages that don't
|
-- -- Disable "format_on_save lsp_fallback" for languages that don't
|
||||||
-- have a well standardized coding style. You can add additional
|
-- -- have a well standardized coding style. You can add additional
|
||||||
-- languages here or re-enable it for the disabled ones.
|
-- -- languages here or re-enable it for the disabled ones.
|
||||||
local disable_filetypes = { c = true, cpp = true, python = true }
|
-- local disable_filetypes = { c = true, cpp = true, python = true }
|
||||||
return {
|
-- return {
|
||||||
timeout_ms = 500,
|
-- timeout_ms = 500,
|
||||||
lsp_fallback = not disable_filetypes[vim.bo[bufnr].filetype],
|
-- lsp_fallback = not disable_filetypes[vim.bo[bufnr].filetype],
|
||||||
}
|
-- }
|
||||||
end,
|
-- end,
|
||||||
formatters_by_ft = {
|
formatters_by_ft = {
|
||||||
lua = { 'stylua' },
|
lua = { 'stylua' },
|
||||||
cpp = { 'clang-format' },
|
cpp = { 'clang-format' },
|
||||||
|
|
Loading…
Reference in New Issue