1
Fork 0
nixos-system-config/users/hu/packages/nvim/config/lua/plugins/lsp/python.lua
2024-06-16 23:32:16 +02:00

10 lines
167 B
Lua

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