39 lines
692 B
Lua
39 lines
692 B
Lua
|
return {
|
||
|
filetypes = { 'lua' },
|
||
|
cmd = { 'lua-language-server' },
|
||
|
root_markers = {
|
||
|
'.luarc.json',
|
||
|
'.luarc.jsonc',
|
||
|
'.luacheckrc',
|
||
|
'.stylua.toml',
|
||
|
'stylua.toml',
|
||
|
'selene.toml',
|
||
|
'selene.yml',
|
||
|
},
|
||
|
|
||
|
settings = {
|
||
|
Lua = {
|
||
|
workspace = {
|
||
|
checkThirdParty = false,
|
||
|
},
|
||
|
codeLens = {
|
||
|
enable = true,
|
||
|
},
|
||
|
completion = {
|
||
|
callSnippet = 'Replace',
|
||
|
},
|
||
|
doc = {
|
||
|
privateName = { '^_' },
|
||
|
},
|
||
|
hint = {
|
||
|
enable = true,
|
||
|
setType = false,
|
||
|
paramType = true,
|
||
|
paramName = 'Disable',
|
||
|
semicolon = 'Disable',
|
||
|
arrayIndex = 'Disable',
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
}
|