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 {
cmd = 'lua-language-server',
filetypes = { 'lua' },
rootmarkers = { '.git' },
cmd = { "lua-language-server" },
filetypes = { "lua" },
root_markers = { ".luarc.json", ".git" },
settings = {
Lua = {
runtime = {
version = "LuaJIT",
},
},
},
}