You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have read the appropriate plugin's documentation.
I have searched that this issue has not been reported before.
By checking this, I confirm that the above steps are completed. I understand leaving this unchecked will result in this report being closed immediately.
Describe the bug
lua_lsp fails to attach the buffer.
ISSUE: (#1884)
PR: (#1903)
the lsp_server still fails to attach to the buffer (client). Configuration validation error during runtime.
--[ERROR][2026-02-27 04:00:45] .../lua/vim/lsp.lua:509 'invalid "lua-language-server" config: /usr/share/nvim/runtime/lua/vim/lsp.lua:484: cmd: expected expected function or table with executable command, got nil'
when changed the vim.lsp.enable 'lua-language-server' (as per the resol
-- ~/.config/nvim/init.luavim.lsp.config('lua-language-server', {
on_init=function(client)
ifclient.workspace_foldersthenlocalpath=client.workspace_folders[1].nameifpath~=vim.fn.stdpath'config' and (vim.uv.fs_stat(path..'/.luarc.json') orvim.uv.fs_stat(path..'/.luarc.jsonc')) thenreturnendendclient.config.settings.Lua=vim.tbl_deep_extend('force', client.config.settings.Lua, {
runtime= {
version='LuaJIT',
path= { 'lua/?.lua', 'lua/?/init.lua' },
},
workspace= {
checkThirdParty=false,
-- NOTE: this is a lot slower and will cause issues when working on your own configuration.-- See https://github.com/neovim/nvim-lspconfig/issues/3189library=vim.api.nvim_get_runtime_file('', true),
},
})
end,
settings= {
Lua= {},
},
})
vim.lsp.enable'lua-language-server'end,
},
Before Reporting an Issue
I have read the kickstart.nvim README.md.
I have read the appropriate plugin's documentation.
I have searched that this issue has not been reported before.
By checking this, I confirm that the above steps are completed. I understand leaving this unchecked will result in this report being closed immediately.
Describe the bug
lua_lsp fails to attach the buffer.
ISSUE: (#1884)
PR: (#1903)
the lsp_server still fails to attach to the buffer (client). Configuration validation error during runtime.
when changed the vim.lsp.enable 'lua-language-server' (as per the resol
value for the config it was giving:
Settings values are missing when
vim.lsp.enable 'lua-language-server'\b
But when I put
vim.lsp.enable 'lua_ls'it works fine:Please check the `/usr/share/nvim/runtime/lua/vim/lsp.lua'.
To Reproduce
vim.lsp.enable 'lua-language-server'Desktop
Linux VOILETDEVIL 6.12.73-1-MANJARO #1 SMP PREEMPT_DYNAMIC Mon, 16 Feb 2026 21:36:06 +0000 x86_64 GNU/LinuxNeovim Version