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
This commit is contained in:
Labnan 2023-02-13 07:56:23 +06:00 committed by GitHub
parent 32744c3f66
commit 98e5d6064d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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