Merge branch 'master' of github.com:k-knosala/kickstart.nvim

This commit is contained in:
Kevin Knosala 2024-04-12 12:07:30 +02:00
commit 52905be67c
3 changed files with 10 additions and 2 deletions

View file

@ -628,7 +628,7 @@ require('lazy').setup({
-- 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 }
local disable_filetypes = { c = true, cpp = true, python = true }
return {
timeout_ms = 500,
lsp_fallback = not disable_filetypes[vim.bo[bufnr].filetype],