neovim/contrib/luarc.json
Gregory Anders 16eed6e766
fix: add lfs to luarc.json (#20979)
The sumneko lua language server keeps prompting me if I want to
"configure my workspace for lfs". These changes suppress that prompt.
2022-11-06 14:31:54 -07:00

28 lines
544 B
JSON

{
"runtime.version": "LuaJIT",
"diagnostics": {
"enable": true,
"globals": [
"vim",
"describe",
"pending",
"it",
"before_each",
"after_each",
"setup",
"teardown",
"lfs"
]
},
"workspace": {
"library": [
"runtime/lua",
"${3rd}/lfs/library"
],
"checkThirdParty": false,
"maxPreload": 2000,
"preloadFileSize": 1000
},
"telemetry.enable": false
}