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

11 lines
167 B
Lua
Raw Permalink Normal View History

2024-06-09 23:02:20 +02:00
return function()
2024-06-16 23:32:16 +02:00
require"lspconfig".basedpyright.setup {
settings = {
python = {
pythonPath = vim.fn.exepath("python3"),
},
},
}
2024-06-09 23:02:20 +02:00
end