nvim: lsp: Enable python language server

This commit is contained in:
Sanchayan Maity 2021-02-25 17:35:50 +05:30
parent eff13b5225
commit 7360f65e2f

View file

@ -99,7 +99,7 @@ local on_attach = function(client, bufnr)
}
end
local servers = { 'hls', 'rust_analyzer' }
local servers = { 'hls', 'rust_analyzer', 'pyls' }
for _, lsp in ipairs(servers) do
nvim_lsp[lsp].setup {
on_attach = on_attach,