Skip to content

Commit 91146e3

Browse files
committed
deprecate typst_lsp
1 parent 8fe5329 commit 91146e3

File tree

4 files changed

+10
-7
lines changed

4 files changed

+10
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ To ease the setup even further it can be complemented with [lsp-zero.nvim](https
66

77
Language servers are loaded in the background without a need of a manual user intervention. They are not installed upfront, but only on-demand after a source file for a given language is opened. The plugin works by relying on Nix package manager which works on Linux, macOS and Windows WSL.
88

9-
Currently available <!-- SERVER_COUNT_PLACEHOLDER -->128 out of 336<!-- SERVER_COUNT_PLACEHOLDER --> servers in lspconfig, see the full list of [supported servers](./servers.md).
9+
Currently available <!-- SERVER_COUNT_PLACEHOLDER -->127 out of 335<!-- SERVER_COUNT_PLACEHOLDER --> servers in lspconfig, see the full list of [supported servers](./servers.md).
1010

1111
## Install
1212

lua/lazy-lsp/servers.lua

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,10 @@ return {
3333
buddy_ls = "",
3434
buf_ls = "buf",
3535
bzl = "",
36-
c3_lsp = { "c3c", "c3-lsp" },
36+
c3_lsp = {
37+
"c3c",
38+
"c3-lsp"
39+
},
3740
cadence = "",
3841
cairo_ls = "",
3942
ccls = "ccls",
@@ -343,7 +346,6 @@ return {
343346
twiggy_language_server = "",
344347
typeprof = "",
345348
typos_lsp = "",
346-
typst_lsp = "typst-lsp",
347349
uiua = "",
348350
ungrammar_languageserver = "",
349351
unison = "",

scripts/update.lua

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,10 @@ for k, v in pairs(lazy_servers) do
2424
end
2525

2626
-- Remove following so that they are not automatically added which would cause warning messages on neovim startup
27-
local ignored = { "rome", "sqls", "ocamlls", "rnix", "als", "bufls", "ruff_lsp" }
27+
local ignored = {
28+
"rome", "sqls", "ocamlls", "rnix", "als", "bufls", "ruff_lsp",
29+
"typst_lsp", -- deprecated in favor of tinymist and archived on Nov 5, 2024
30+
}
2831
print("Ignoring deprecated:", table.concat(ignored, ", "))
2932
for _, v in ipairs(ignored) do
3033
servers[v] = nil

servers.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,13 +82,12 @@ It can be used to decide which servers to specify using the `excluded_servers` a
8282
| `typescript` | [biome](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#biome), [denols](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#denols), [eslint](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#eslint), [quick_lint_js](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#quick_lint_js), [tailwindcss](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#tailwindcss), [ts_ls](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#ts_ls) | [eslint](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#eslint), [ts_ls](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#ts_ls) |
8383
| `typescript.tsx` | [biome](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#biome), [denols](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#denols), [eslint](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#eslint), [ts_ls](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#ts_ls) | [eslint](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#eslint), [ts_ls](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#ts_ls) |
8484
| `typescriptreact` | [biome](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#biome), [denols](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#denols), [eslint](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#eslint), [tailwindcss](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#tailwindcss), [ts_ls](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#ts_ls) | [eslint](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#eslint), [ts_ls](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#ts_ls) |
85-
| `typst` | [tinymist](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#tinymist), [typst_lsp](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#typst_lsp) | [tinymist](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#tinymist), [typst_lsp](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#typst_lsp) |
8685
| `verilog` | [svls](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#svls), [verible](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#verible) | [svls](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#svls), [verible](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#verible) |
8786
| `vert` | [glsl_analyzer](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#glsl_analyzer), [glslls](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#glslls) | [glsl_analyzer](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#glsl_analyzer), [glslls](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#glslls) |
8887
| `vue` | [biome](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#biome), [eslint](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#eslint), [stylelint_lsp](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#stylelint_lsp), [tailwindcss](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#tailwindcss), [volar](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#volar), [vuels](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#vuels) | [eslint](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#eslint), [stylelint_lsp](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#stylelint_lsp), [volar](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#volar), [vuels](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#vuels) |
8988
| `yaml.docker-compose` | [docker_compose_language_service](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#docker_compose_language_service), [yamlls](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#yamlls) | [yamlls](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#yamlls) |
9089

91-
## Available servers: 128 / 336
90+
## Available servers: 127 / 335
9291

9392
| Language Server | Nix package |
9493
| - | - |
@@ -209,7 +208,6 @@ It can be used to decide which servers to specify using the `excluded_servers` a
209208
| [tilt_ls](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#tilt_ls) | [tilt](https://search.nixos.org/packages?channel=unstable&query=tilt&show=tilt) |
210209
| [tinymist](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#tinymist) | [tinymist](https://search.nixos.org/packages?channel=unstable&query=tinymist&show=tinymist) |
211210
| [ts_ls](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#ts_ls) | [typescript-language-server](https://search.nixos.org/packages?channel=unstable&query=typescript-language-server&show=typescript-language-server) |
212-
| [typst_lsp](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#typst_lsp) | [typst-lsp](https://search.nixos.org/packages?channel=unstable&query=typst-lsp&show=typst-lsp) |
213211
| [vala_ls](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#vala_ls) | [vala-language-server](https://search.nixos.org/packages?channel=unstable&query=vala-language-server&show=vala-language-server) |
214212
| [verible](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#verible) | [verible](https://search.nixos.org/packages?channel=unstable&query=verible&show=verible) |
215213
| [vhdl_ls](https://github.com/neovim/nvim-lspconfig/blob/master/doc/configs.md#vhdl_ls) | [vhdl-ls](https://search.nixos.org/packages?channel=unstable&query=vhdl-ls&show=vhdl-ls) |

0 commit comments

Comments
 (0)