nvim-ufo/.luarc.jsonc

30 lines
700 B
Text
Raw Normal View History

2022-06-01 09:17:08 +02:00
{
"$schema": "https://raw.githubusercontent.com/sumneko/vscode-lua/master/setting/schema.json",
"completion.callSnippet": "Replace",
"completion.displayContext": 50,
"completion.keywordSnippet": "Disable",
"completion.postfix": ".",
2024-02-16 12:59:39 +01:00
"diagnostics.libraryFiles": "Disable",
2022-06-01 09:17:08 +02:00
"diagnostics.disable": [
"different-requires",
"param-type-mismatch",
"assign-type-mismatch"
2022-06-01 09:17:08 +02:00
],
"diagnostics.globals": [
"jit",
"it",
"describe",
"before_each",
"after_each",
"setup",
"teardown"
],
"runtime.version": "LuaJIT",
"type.castNumberToInteger": true,
"type.weakUnionCheck": true,
2022-06-01 09:17:08 +02:00
"workspace.library": [
2024-02-16 12:59:39 +01:00
"$VIM/runtime/lua",
2022-06-01 09:17:08 +02:00
"$VIM/site/pack/packer/start/promise-async/typings"
]
}