mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 18:55:14 -07:00
16eed6e766
The sumneko lua language server keeps prompting me if I want to "configure my workspace for lfs". These changes suppress that prompt.
28 lines
544 B
JSON
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
|
|
}
|