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 | 9df2399d437bb25089994c5b2e4f102110263e5c (patch) | |
| tree | ec78b6c44340ad3d27e6bf3be2f654d245af9ba1 /nvim/init.lua | |
| parent | 910166b3729109cf6bd8fd5feb4cba287ae4424c (diff) | |
| download | dots-9df2399d437bb25089994c5b2e4f102110263e5c.tar.gz | |
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>
Diffstat (limited to 'nvim/init.lua')
| -rw-r--r-- | nvim/init.lua | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/nvim/init.lua b/nvim/init.lua index 961eb78..167114c 100644 --- a/nvim/init.lua +++ b/nvim/init.lua @@ -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 }, }, |