dotfiles/.config/nvim/lsp/openscad_lsp.lua

18 lines
367 B
Lua
Raw Permalink Normal View History

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