I updated lspconfig and replace sumneko_lua
to lua_ls
but I am getting this
[lspconfig] Cannot access configuration for lua_ls. Ensure this server is listed in `server_configurations.md` or added as a custom server.
I have this config, using lazy.nvim
as my plugin manager
{
"williamboman/mason-lspconfig.nvim",
config = function()
require("mason-lspconfig").setup({
ensure_installed = {
"angularls",
"bashls",
"cssls",
"eslint",
"gopls",
"html",
"jsonls",
"lua_ls",
"rust_analyzer",
"svelte",
"tailwindcss",
"tsserver",
"yamlls",
},
})
end,
},
Any hint how should i fix this?
Thank you