15 lines
315 B
Lua
15 lines
315 B
Lua
---@brief
|
|
---
|
|
--- https://github.com/Gbury/dolmen/blob/master/doc/lsp.md
|
|
---
|
|
--- `dolmenls` can be installed via `opam`
|
|
--- ```sh
|
|
--- opam install dolmen_lsp
|
|
--- ```
|
|
|
|
---@type vim.lsp.Config
|
|
return {
|
|
cmd = { 'dolmenls' },
|
|
filetypes = { 'smt2', 'tptp', 'p', 'cnf', 'icnf', 'zf' },
|
|
root_markers = { '.git' },
|
|
}
|