diff options
| author | Seiya <20365512+seiyab@users.noreply.github.com> | 2025-10-11 00:08:42 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-10-10 08:08:42 -0700 |
| commit | 50a5176795eaf4aa7e4806410e799c5dda21bc8f (patch) | |
| tree | 5b301b59adf479a6c80428725e7b436e3c5d7eaf /lua | |
| parent | docs: update configs.md (diff) | |
| download | nvim-lspconfig-50a5176795eaf4aa7e4806410e799c5dda21bc8f.tar nvim-lspconfig-50a5176795eaf4aa7e4806410e799c5dda21bc8f.tar.gz nvim-lspconfig-50a5176795eaf4aa7e4806410e799c5dda21bc8f.tar.bz2 nvim-lspconfig-50a5176795eaf4aa7e4806410e799c5dda21bc8f.tar.lz nvim-lspconfig-50a5176795eaf4aa7e4806410e799c5dda21bc8f.tar.xz nvim-lspconfig-50a5176795eaf4aa7e4806410e799c5dda21bc8f.tar.zst nvim-lspconfig-50a5176795eaf4aa7e4806410e799c5dda21bc8f.zip | |
fix!: remove ocamlls #4118
ocamlls was added at #76.
It was because ocaml-lsp-server, which is official one, was too young.
In 2025, the official one works fine. On the other hand, unofficial
ocaml-language-server is not maintaned. We can no longer access its
GitHub repository.
Issue: #4115
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/lspconfig/configs/ocamlls.lua | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/lua/lspconfig/configs/ocamlls.lua b/lua/lspconfig/configs/ocamlls.lua deleted file mode 100644 index b7c480e8..00000000 --- a/lua/lspconfig/configs/ocamlls.lua +++ /dev/null @@ -1,19 +0,0 @@ -local util = require 'lspconfig.util' - -return { - default_config = { - cmd = { 'ocaml-language-server', '--stdio' }, - filetypes = { 'ocaml', 'reason' }, - root_dir = util.root_pattern('*.opam', 'esy.json', 'package.json'), - }, - docs = { - description = [[ -https://github.com/ocaml-lsp/ocaml-language-server - -`ocaml-language-server` can be installed via `npm` -```sh -npm install -g ocaml-language-server -``` - ]], - }, -} |
