fix: don't check third party for Lua LSP

This commit is contained in:
Nicolas Gryman 2022-12-18 19:56:40 +01:00 committed by GitHub
parent c73aefcb21
commit 331b122af5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -379,7 +379,10 @@ require('lspconfig').sumneko_lua.setup {
diagnostics = {
globals = { 'vim' },
},
workspace = { library = vim.api.nvim_get_runtime_file('', true) },
workspace = {
library = vim.api.nvim_get_runtime_file('', true),
checkcheckThirdParty = false,
},
-- Do not send telemetry data containing a randomized but unique identifier
telemetry = { enable = false },
},