Skip to content

Commit

Permalink
Added ocaml-lsp to config which is reported working on #17
Browse files Browse the repository at this point in the history
  • Loading branch information
jgmdev committed Nov 24, 2021
1 parent 92f4990 commit f7d9e06
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions lsp/config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,19 @@ lspconfig.intelephense = add_lsp {
verbose = false
}

-- ocaml-lsp
-- Status: Reported working on https://github.com/jgmdev/lite-xl-lsp/issues/17
-- Site: https://github.com/ocaml/ocaml-lsp
-- Installation: https://github.com/ocaml/ocaml-lsp#installation
lspconfig.ocaml_lsp = add_lsp {
name = "ocaml-lsp",
language = "ocaml",
file_patterns = {"%.ml$", "%.mli$"},
command = {"ocamllsp"},
id_not_extension = true,
verbose = false
}

-- python-language-server
-- Status: Works (deprecated in favor of python-lsp-server)
-- Site: https://github.com/palantir/python-language-server
Expand Down

0 comments on commit f7d9e06

Please sign in to comment.