aboutsummaryrefslogtreecommitdiffstats
path: root/doc/server_configurations.txt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/server_configurations.txt')
-rw-r--r--doc/server_configurations.txt37
1 files changed, 37 insertions, 0 deletions
diff --git a/doc/server_configurations.txt b/doc/server_configurations.txt
index dc4170e7..3862fbe5 100644
--- a/doc/server_configurations.txt
+++ b/doc/server_configurations.txt
@@ -162,6 +162,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running
- [vala_ls](#vala_ls)
- [vdmj](#vdmj)
- [verible](#verible)
+- [veridian](#veridian)
- [vimls](#vimls)
- [visualforce_ls](#visualforce_ls)
- [vls](#vls)
@@ -6872,6 +6873,42 @@ require'lspconfig'.verible.setup{}
```
+## veridian
+
+https://github.com/vivekmalneedi/veridian
+
+A SystemVerilog LanguageServer.
+
+Download the latest release for your OS from the releases page
+
+# install with slang feature, if C++17 compiler is available
+cargo install --git https://github.com/vivekmalneedi/veridian.git --all-features
+# install if C++17 compiler is not available
+cargo install --git https://github.com/vivekmalneedi/veridian.git
+
+
+
+**Snippet to enable the language server:**
+```lua
+require'lspconfig'.veridian.setup{}
+```
+
+
+**Default values:**
+ - `cmd` :
+ ```lua
+ { "veridian" }
+ ```
+ - `filetypes` :
+ ```lua
+ { "systemverilog", "verilog" }
+ ```
+ - `root_dir` :
+ ```lua
+ see source file
+ ```
+
+
## vimls
https://github.com/iamcco/vim-language-server