diff options
author | Nicolas Gryman <ngryman@gmail.com> | 2022-12-20 00:01:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-19 18:01:33 -0500 |
commit | d37a3a946288c97e52e3d82e8a710c099eb6bd90 (patch) | |
tree | ab4ba8276c79c2196031186a8ec616f896652ded | |
parent | 99df0d8f66ac499e949109883792ddb22ddba025 (diff) |
fix: don't check third party for Lua LSP (#57)
* fix: don't check third party for Lua LSP
Co-authored-by: Sean <44933921+seantwie03@users.noreply.github.com>
Co-authored-by: TJ DeVries <devries.timothyj@gmail.com>
Co-authored-by: Sean <44933921+seantwie03@users.noreply.github.com>
-rw-r--r-- | init.lua | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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), + checkThirdParty = false, + }, -- Do not send telemetry data containing a randomized but unique identifier telemetry = { enable = false }, }, |