mirror of
https://github.com/marianozunino/nvim.git
synced 2025-06-28 02:23:50 -03:00
21 lines
464 B
Lua
21 lines
464 B
Lua
return {
|
|
settings = {
|
|
Lua = {
|
|
format = {
|
|
enable = false,
|
|
},
|
|
hint = {
|
|
enable = false,
|
|
arrayIndex = "Disable", -- "Enable" | "Auto" | "Disable"
|
|
await = true,
|
|
paramName = "Disable", -- "All" | "Literal" | "Disable"
|
|
paramType = true,
|
|
semicolon = "All", -- "All" | "SameLine" | "Disable"
|
|
setType = false,
|
|
},
|
|
telemetry = {
|
|
enable = false,
|
|
},
|
|
},
|
|
},
|
|
}
|