18 lines
367 B
Lua
18 lines
367 B
Lua
|
|
---@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' },
|
||
|
|
}
|