From 4187417158a22ff80a059a73f2eddb113f59c113 Mon Sep 17 00:00:00 2001 From: Folke Lemaitre Date: Wed, 20 Mar 2024 22:25:59 +0100 Subject: [PATCH] fix(python): basedpyright is now supported by mason-lspconfig --- lua/lazyvim/plugins/extras/lang/python.lua | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/lua/lazyvim/plugins/extras/lang/python.lua b/lua/lazyvim/plugins/extras/lang/python.lua index 559594db..f5948903 100644 --- a/lua/lazyvim/plugins/extras/lang/python.lua +++ b/lua/lazyvim/plugins/extras/lang/python.lua @@ -13,18 +13,6 @@ return { end end, }, - -- basedpyright support. - -- Remove when merged: https://github.com/williamboman/mason-lspconfig.nvim/pull/379 - { - "williamboman/mason.nvim", - optional = true, - opts = function(_, opts) - if vim.g.lazyvim_python_lsp == "basedpyright" then - opts.ensure_installed = opts.ensure_installed or {} - table.insert(opts.ensure_installed, "basedpyright") - end - end, - }, { "neovim/nvim-lspconfig", opts = {