diff options
| author | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2026-01-26 15:01:55 +0000 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2026-01-26 15:01:55 +0000 |
| commit | 34eeb5901c0f286795e8514ff026fd53d7589a74 (patch) | |
| tree | 7018b2ec4b3ce51255f4a960e9e014759708f32f | |
| parent | fix: disable telemetry in the intelephense lsp server #4279 (diff) | |
| download | nvim-lspconfig-34eeb5901c0f286795e8514ff026fd53d7589a74.tar nvim-lspconfig-34eeb5901c0f286795e8514ff026fd53d7589a74.tar.gz nvim-lspconfig-34eeb5901c0f286795e8514ff026fd53d7589a74.tar.bz2 nvim-lspconfig-34eeb5901c0f286795e8514ff026fd53d7589a74.tar.lz nvim-lspconfig-34eeb5901c0f286795e8514ff026fd53d7589a74.tar.xz nvim-lspconfig-34eeb5901c0f286795e8514ff026fd53d7589a74.tar.zst nvim-lspconfig-34eeb5901c0f286795e8514ff026fd53d7589a74.zip | |
docs: update configs.md
skip-checks: true
| -rw-r--r-- | doc/configs.md | 10 | ||||
| -rw-r--r-- | doc/configs.txt | 8 |
2 files changed, 18 insertions, 0 deletions
diff --git a/doc/configs.md b/doc/configs.md index 93d2f5f5..d5799f9c 100644 --- a/doc/configs.md +++ b/doc/configs.md @@ -6025,6 +6025,16 @@ Default config: ```lua { ".git", "composer.json" } ``` +- `settings` : + ```lua + { + intelephense = { + telemetry = { + enabled = false + } + } + } + ``` --- diff --git a/doc/configs.txt b/doc/configs.txt index c523c3d7..02456235 100644 --- a/doc/configs.txt +++ b/doc/configs.txt @@ -4345,6 +4345,14 @@ Default config: { "php" } - root_markers: >lua { ".git", "composer.json" } +- settings: >lua + { + intelephense = { + telemetry = { + enabled = false + } + } + } < ------------------------------------------------------------------------------ |
