Use lua_ls as Lua Language Server

sumneko_lua is deprecated. Causing warning like:
```
mason-lspconfig.nvim] Server "sumneko_lua" is not a valid entry in ensure_installed. 
Make sure to only provide lspconfig server names
```
While the language server is not loaded. 
Fix this warning by using lua_ls instead of sumneko_lua
pull/173/head
Labnan 2 years ago committed by GitHub
parent 32744c3f66
commit 98e5d6064d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -343,7 +343,7 @@ local servers = {
-- rust_analyzer = {},
-- tsserver = {},
sumneko_lua = {
lua_ls = {
Lua = {
workspace = { checkThirdParty = false },
telemetry = { enable = false },

Loading…
Cancel
Save