blob: a9b8da045c85335a9a9e282340875e8162f946fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
---@brief
---
--- https://github.com/Leathong/openscad-LSP
---
--- A Language Server Protocol server for OpenSCAD
---
--- You can build and install `openscad-lsp` binary with `cargo`:
--- ```sh
--- cargo install openscad-lsp
--- ```
---@type vim.lsp.Config
return {
cmd = { 'openscad-lsp', '--stdio' },
filetypes = { 'openscad' },
root_markers = { '.git' },
}
|