18 lines
332 B
Lua
18 lines
332 B
Lua
return {
|
|
cmd = { "lua-language-server" },
|
|
root_markers = { ".luarc.json", ".luarc.jsonc" },
|
|
filetypes = { "lua" },
|
|
settings = {
|
|
Lua = {
|
|
completion = { callSnippet = "Both" },
|
|
hint = { enable = true },
|
|
workspace = {
|
|
library = {
|
|
vim.env.VIMRUNTIME,
|
|
},
|
|
},
|
|
runtime = { version = "LuaJIT" },
|
|
},
|
|
},
|
|
}
|