mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-12-25 12:14:19 +01:00
47 lines
1.1 KiB
Lua
47 lines
1.1 KiB
Lua
return {
|
|
recommended = function()
|
|
return LazyVim.extras.wants({
|
|
ft = { "ml", "mli", "cmi", "cmo", "cmx", "cma", "cmxa", "cmxs", "cmt", "cmti", "opam" },
|
|
root = { "merlin.opam", "dune-project" },
|
|
})
|
|
end,
|
|
{
|
|
"nvim-treesitter/nvim-treesitter",
|
|
opts = function(_, opts)
|
|
if type(opts.ensure_installed) == "table" then
|
|
vim.list_extend(opts.ensure_installed, { "ocaml" })
|
|
end
|
|
end,
|
|
},
|
|
{
|
|
"neovim/nvim-lspconfig",
|
|
opts = {
|
|
servers = {
|
|
ocamllsp = {
|
|
filetypes = {
|
|
"ocaml",
|
|
"ocaml.menhir",
|
|
"ocaml.interface",
|
|
"ocaml.ocamllex",
|
|
"reason",
|
|
"dune",
|
|
},
|
|
root_markers = {
|
|
function(name)
|
|
return name:match(".*%.opam$")
|
|
end,
|
|
"esy.json",
|
|
"package.json",
|
|
".git",
|
|
"dune-project",
|
|
"dune-workspace",
|
|
function(name)
|
|
return name:match(".*%.ml$")
|
|
end,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|