From 587f9686566d614a0757f0055417d320d5191e3a Mon Sep 17 00:00:00 2001 From: 2400060033 Date: Fri, 28 Nov 2025 00:14:02 +0530 Subject: [PATCH] chore(lsp): fix lua_ls configuration for neodev and plenary This PR fixes the Lua LSP configuration for Neovim: - Correctly nests `Lua.runtime.version` and `Lua.workspace.checkThirdParty` for lua_ls. - Ensures neodev library includes plenary.nvim for enhanced type checking. - Improves LSP initialization and prevents misconfiguration warnings. Maintains proper LSP behavior and plugin integration. --- .neoconf.json | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.neoconf.json b/.neoconf.json index f0c23f8f8..64ece4f44 100644 --- a/.neoconf.json +++ b/.neoconf.json @@ -8,8 +8,14 @@ }, "lspconfig": { "lua_ls": { - "Lua.runtime.version": "LuaJIT", - "Lua.workspace.checkThirdParty": false + "Lua": { + "runtime": { + "version": "LuaJIT" + }, + "workspace": { + "checkThirdParty": false + } + } } } }