aboutsummaryrefslogtreecommitdiffstats
path: root/lsp/svls.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lsp/svls.lua')
-rw-r--r--lsp/svls.lua15
1 files changed, 15 insertions, 0 deletions
diff --git a/lsp/svls.lua b/lsp/svls.lua
new file mode 100644
index 00000000..270bc899
--- /dev/null
+++ b/lsp/svls.lua
@@ -0,0 +1,15 @@
+---@brief
+---
+---https://github.com/dalance/svls
+--
+-- Language server for verilog and SystemVerilog
+--
+-- `svls` can be installed via `cargo`:
+-- ```sh
+-- cargo install svls
+-- ```
+return {
+ cmd = { 'svls' },
+ filetypes = { 'verilog', 'systemverilog' },
+ root_markers = { '.git' },
+}