nvim/lsp/openscad_lsp.lua
2025-09-22 16:07:34 +02:00

17 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' },
}