Files
watchexec.nvim/.luarc.json
T

28 lines
517 B
JSON
Raw Normal View History

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