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:
parent
32744c3f66
commit
98e5d6064d
2
init.lua
2
init.lua
|
@ -343,7 +343,7 @@ local servers = {
|
||||||
-- rust_analyzer = {},
|
-- rust_analyzer = {},
|
||||||
-- tsserver = {},
|
-- tsserver = {},
|
||||||
|
|
||||||
sumneko_lua = {
|
lua_ls = {
|
||||||
Lua = {
|
Lua = {
|
||||||
workspace = { checkThirdParty = false },
|
workspace = { checkThirdParty = false },
|
||||||
telemetry = { enable = false },
|
telemetry = { enable = false },
|
||||||
|
|
Loading…
Reference in New Issue