nvim-lspconfig/lsp/svls.lua

18 lines
324 B
Lua

---@brief
---
--- https://github.com/dalance/svls
---
--- Language server for verilog and SystemVerilog
---
--- `svls` can be installed via `cargo`:
--- ```sh
--- cargo install svls
--- ```
---@type vim.lsp.Config
return {
cmd = { 'svls' },
filetypes = { 'verilog', 'systemverilog' },
root_markers = { '.git' },
}