new-main #1

Open
SailReal wants to merge 139 commits from new-main into main
1 changed files with 2 additions and 10 deletions
Showing only changes of commit ccc130d59a - Show all commits

View File

@ -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', '<leader>cc', ':Telescope neoclip<CR>', { noremap = true, silent = true })