aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* docs: update generated annotationsHEADmastergithub-actions[bot]3 days1-9/+0
| | | | skip-checks: true
* docs: update configs.mdgithub-actions[bot]3 days2-2/+2
| | | | skip-checks: true
* docs(angularls): update link to angularls #4466Floris Bartra3 days1-1/+1
|
* docs: update generated annotationsgithub-actions[bot]6 days1-0/+4
| | | | skip-checks: true
* docs: update configs.mdgithub-actions[bot]6 days2-2/+8
| | | | skip-checks: true
* fix(ruff_lsp): deprecate `ruff_lsp` in favour of `ruff` #4463Harshit Tomar6 days2-1/+6
| | | | | | | | Problem: ruff_lsp project is now archive and the tool deprecated Solution: add deprecation warning to the config description, also ensure that the user is warned when enabling the config using `vim.deprecate()`
* docs: update generated annotationsgithub-actions[bot]7 days3-98/+223
| | | | skip-checks: true
* docs: update configs.mdgithub-actions[bot]7 days2-8/+4
| | | | skip-checks: true
* fix(svelte): support svelteserver installed in node_modules #4462Bruno Tavares7 days1-2/+11
| | | | | | | | | | | | | | Problem: Currently the `svelte` configuration expects a globally installed `svelteserver` binary. Meanwhile, other LSP configs support binaries installed as dev dependencies on `node_modules/.bin`. A global language server makes it harder to have project-scoped version management. Solution: Implement a `cmd` finder similar to `oxlint` and `oxfmt` which considers `node_modules/bin` as an additional lookup path as well as the global install Workaround: Meanwhile, users can define the `cmd` function on their own `vim.lsp.config('svelte')` as needed.
* docs: update configs.mdgithub-actions[bot]12 days2-2/+2
| | | | skip-checks: true
* Enable clangd lsp for c.doxygen / cpp.doxygen #4459michaelpeeters-st12 days2-2/+2
| | | | | | | | | | | | | | This fixes #4458. One option to get doxygen highlighting in C / C++ files is to append `.doxygen` to the file type (see `:help doxygen`). This commits add the `c.doxygen` / `cpp.doxygen` filetypes to the list of clangd lsp to be compatible with this approach. Note that vim help also recommend an alternative approach that doesn't change the filetype, which is to define the variable: let g:load_doxygen_syntax=1
* docs: update configs.mdgithub-actions[bot]2026-06-192-6/+2
| | | | skip-checks: true
* fix(hhvm): run server in project root #4456Anton Kastritskii2026-06-191-1/+7
|
* docs: update configs.mdgithub-actions[bot]2026-06-182-0/+78
| | | | skip-checks: true
* added µcad lsp #4454Frederik Hansen2026-06-181-0/+26
|
* docs: update generated annotationsgithub-actions[bot]2026-06-181-81/+6
| | | | skip-checks: true
* ci: bump actions/checkout from 6 to 7 #4455dependabot[bot]2026-06-185-9/+9
| | | | | | | | | | | | | | | | Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
* docs: update generated annotationsgithub-actions[bot]2026-06-183-2/+11
| | | | skip-checks: true
* docs: update configs.mdgithub-actions[bot]2026-06-182-0/+16
| | | | skip-checks: true
* feat(terraformls): enable codelens #4453Gustav Eikaas2026-06-181-0/+8
| | | ref https://github.com/hashicorp/terraform-ls/blob/84064cd19ffd0d6b356cd2725d81987111c94cb6/docs/language-clients.md#L162
* docs: update configs.mdgithub-actions[bot]2026-06-122-0/+50
| | | | skip-checks: true
* feat: fallow lsp #4450Igor Lacerda2026-06-122-0/+29
|
* docs: update generated annotationsgithub-actions[bot]2026-06-124-12/+14
| | | | skip-checks: true
* docs: update configs.mdgithub-actions[bot]2026-06-122-2/+2
| | | | skip-checks: true
* docs: update link to opencl_ls documentation #4451Ilia Shoshin2026-06-121-1/+1
|
* docs: update generated annotationsgithub-actions[bot]2026-06-083-3/+9
| | | | skip-checks: true
* docs: update configs.mdgithub-actions[bot]2026-06-082-2/+2
| | | | skip-checks: true
* fix(gitlab_duo): update npm registry command for GitLab LSP #4449Aboobacker MK2026-06-081-1/+1
| | | | | Make registry path more specific to the main package to make npx command more reliable Upstream issue: https://gitlab.com/gitlab-org/editor-extensions/gitlab-lsp/-/work_items/2371
* docs: update configs.mdv2.10.0github-actions[bot]2026-06-032-10/+14
| | | | skip-checks: true
* fix(emmylua_ls): move settings under emmylua section #4447Marcus Caisey2026-06-031-2/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: EmmyLua requests configuration from the "emmylua" section, but the current configuration doesn't expose the settings under that section. Example request and response: ```json { "jsonrpc": "2.0", "id": 1, "method": "workspace/configuration", "params": { "items": [ { "scopeUri": "file:///Users/marcus/.dotfiles", "section": "emmylua" } ] } } ``` ```json { "result": [ null ], "id": 1, "jsonrpc": "2.0" } ``` Solution: Move the settings under the "emmylua" section. After these changes: ```json { "jsonrpc": "2.0", "id": 1, "method": "workspace/configuration", "params": { "items": [ { "scopeUri": "file:///Users/marcus/.dotfiles", "section": "emmylua" } ] } } ``` ```json { "result": [ { "hint": { "enable": true }, "codeLens": { "enable": true } } ], "id": 1, "jsonrpc": "2.0" } ```
* docs: update configs.mdgithub-actions[bot]2026-06-022-0/+58
| | | | skip-checks: true
* feat: cqlls #4444アクゼスティア2026-06-021-0/+16
|
* docs: update generated annotationsgithub-actions[bot]2026-06-023-7/+7
| | | | skip-checks: true
* docs: update configs.mdgithub-actions[bot]2026-06-022-2/+46
| | | | skip-checks: true
* feat(gopls): semantic tokens enabled by default on client side (#4446)Roman Kruk2026-06-021-0/+21
|
* feat(oxlint): check if tsgolint bin exists inside project #4437Igor Lacerda2026-05-281-1/+6
|
* docs: update configs.mdgithub-actions[bot]2026-05-282-0/+70
| | | | skip-checks: true
* feat(jls): add jls config #4439Ibrahim Delice2026-05-281-0/+30
| | | Co-authored-by: Delice0 <59118341+Delice0@users.noreply.github.com>
* docs: update configs.mdgithub-actions[bot]2026-05-282-2/+2
| | | | skip-checks: true
* fix(rescript): default parameters do not enable incrementalTypechecking #4440Wildfield2026-05-281-1/+1
| | | Fixes the issue by changing "enabled" to "enable"
* docs: update generated annotationsgithub-actions[bot]2026-05-283-2/+8
| | | | skip-checks: true
* fix(flow): resolve project-local binary before npx fallback #4431Arthur2026-05-281-4/+8
| | | | | When flow is not in global PATH, try node_modules/.bin/flow relative to the project root before falling back to npx. This covers the common case where flow-bin is a local devDependency.
* docs: update generated annotationsgithub-actions[bot]2026-05-272-1/+4
| | | | skip-checks: true
* docs: update configs.mdgithub-actions[bot]2026-05-272-0/+58
| | | | skip-checks: true
* feat: slang-server #4441Todd Strader2026-05-271-0/+17
|
* docs: update configs.mdgithub-actions[bot]2026-05-222-6/+14
| | | | skip-checks: true
* docs(roslyn_ls): dotnet tool install instructions #4435Alexandre Teoi2026-05-221-1/+6
|
* docs: update configs.mdgithub-actions[bot]2026-05-222-18/+8
| | | | skip-checks: true
* fix(roslyn_ls): drop unnecessary code, recommend maintained plugin #4436Sebastian Lyng Johansen2026-05-221-26/+1
| | | | rzls.nvim is deprecated and the support of razor is now moved into roslyn.nvim with the author for rzls.nvim joining to maintain roslyn.nvim
* fix(oxc): fix oxlint, oxfmt vite plus config search #4434VI0L3TF0X2026-05-213-7/+39
|