nvim/lua/config/lsp/lua_ls.lua
2024-12-21 12:38:40 -03:00

22 lines
392 B
Lua

-- With 2-space indentation
return {
settings = {
Lua = {
format = {
enable = false,
},
hint = {
enable = false,
arrayIndex = "Disable",
await = true,
paramName = "Disable",
paramType = true,
semicolon = "All",
setType = false,
},
telemetry = {
enable = false,
},
},
},
}