nvim: fix lua lsp config

This commit is contained in:
2026-01-18 23:53:27 +01:00
parent 85553bd9ac
commit baec05802d

View File

@@ -1,5 +1,12 @@
return { return {
cmd = 'lua-language-server', cmd = { "lua-language-server" },
filetypes = { 'lua' }, filetypes = { "lua" },
rootmarkers = { '.git' }, root_markers = { ".luarc.json", ".git" },
settings = {
Lua = {
runtime = {
version = "LuaJIT",
},
},
},
} }