19 lines
314 B
Lua
19 lines
314 B
Lua
return {
|
|
cmd = { "lua-language-server" },
|
|
filetypes = { "lua" },
|
|
root_markers = { ".luarc.json", ".luarc.jsonc", ".git" },
|
|
settings = {
|
|
Lua = {
|
|
completion = {
|
|
callSnippet = "Replace",
|
|
},
|
|
workspace = {
|
|
library = {
|
|
vim.env.VIMRUNTIME,
|
|
},
|
|
checkThirdParty = false,
|
|
},
|
|
},
|
|
},
|
|
}
|