mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2025-12-24 23:11:00 +01:00
18 lines
324 B
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' },
|
|
}
|