diff options
| author | kylo252 <59826753+kylo252@users.noreply.github.com> | 2021-10-04 18:52:51 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-10-04 09:52:51 -0700 |
| commit | 30442900db62ff875013b3f1584e8c0a832c43d2 (patch) | |
| tree | 60a4d092056d9306f122b60ba39e2a2b9d6bf1d9 /lua | |
| parent | docs(readme): make it faster to get to config.md (#1238) (diff) | |
| download | nvim-lspconfig-30442900db62ff875013b3f1584e8c0a832c43d2.tar nvim-lspconfig-30442900db62ff875013b3f1584e8c0a832c43d2.tar.gz nvim-lspconfig-30442900db62ff875013b3f1584e8c0a832c43d2.tar.bz2 nvim-lspconfig-30442900db62ff875013b3f1584e8c0a832c43d2.tar.lz nvim-lspconfig-30442900db62ff875013b3f1584e8c0a832c43d2.tar.xz nvim-lspconfig-30442900db62ff875013b3f1584e8c0a832c43d2.tar.zst nvim-lspconfig-30442900db62ff875013b3f1584e8c0a832c43d2.zip | |
fix: disable telemetry in yamlls (#1294)
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/lspconfig/yamlls.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lua/lspconfig/yamlls.lua b/lua/lspconfig/yamlls.lua index 3ca999a7..3154556d 100644 --- a/lua/lspconfig/yamlls.lua +++ b/lua/lspconfig/yamlls.lua @@ -11,6 +11,10 @@ configs[server_name] = { root_dir = function(fname) return util.root_pattern '.git'(fname) or util.path.dirname(fname) end, + settings = { + -- https://github.com/redhat-developer/vscode-redhat-telemetry#how-to-disable-telemetry-reporting + redhat = { telemetry = { enabled = false } }, + }, }, docs = { package_json = 'https://raw.githubusercontent.com/redhat-developer/vscode-yaml/master/package.json', |
