aboutsummaryrefslogtreecommitdiffstats
path: root/lsp/openscad_lsp.lua
blob: bfbbd5fd44b0847a804640944f2d5a4582f87b73 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
---@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' },
}