1
Fork 0
nixos-system-config/dotfiles/nvim/lua/plugins/lsp/python.lua

10 lines
167 B
Lua

return function()
require"lspconfig".basedpyright.setup {
settings = {
python = {
pythonPath = vim.fn.exepath("python3"),
},
},
}
end