diff --git a/init.lua b/init.lua index d7592f4..86bdfe4 100644 --- a/init.lua +++ b/init.lua @@ -714,16 +714,7 @@ 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 } - return { - timeout_ms = 500, - lsp_fallback = not disable_filetypes[vim.bo[bufnr].filetype], - } - end, + format_on_save = nil, formatters_by_ft = { lua = { 'stylua' }, -- Conform can also run multiple formatters sequentially @@ -1167,3 +1158,4 @@ vim.api.nvim_create_user_command('ThisIsYourCaptainSpeaking', 'let b:copilot_ena require('neoclip').setup() vim.api.nvim_set_keymap('n', 'cc', ':Telescope neoclip', { noremap = true, silent = true }) +