27 lines
441 B
Lua
27 lines
441 B
Lua
return {
|
|
cmd = { "lua-language-server" },
|
|
filetypes = { "lua" },
|
|
root_markers = {
|
|
".lua",
|
|
".emmyrc.json",
|
|
".luarc.json",
|
|
".luarc.jsonc",
|
|
".luacheckrc",
|
|
".stylua.toml",
|
|
"stylua.toml",
|
|
"selene.toml",
|
|
"selene.yml",
|
|
".git",
|
|
},
|
|
settings = {
|
|
Lua = {
|
|
codeLens = {
|
|
enable = true,
|
|
},
|
|
hint = {
|
|
enable = true,
|
|
semicolon = "Disable",
|
|
},
|
|
},
|
|
},
|
|
}
|