Files
watchexec.nvim/.luarc.json
T

28 lines
517 B
JSON

{
"$schema": "https://raw.githubusercontent.com/sumneko/vscode-lua/master/setting/schema.json",
"compiler": {
"verbosity": "Information"
},
"diagnostics": {
"globals": [
"vim",
"describe",
"it",
"before_each",
"after_each",
"assert"
]
},
"workspace": {
"checkThirdParty": false,
"library": [
"$VIMRUNTIME/lua",
"${3rd}/luv/library",
"./.tests/vendor/plenary.nvim"
]
},
"diagnostics.disable": [
"undefined-field"
]
}