diff options
| author | github-actions <github-actions@github.com> | 2022-08-22 22:19:02 +0000 |
|---|---|---|
| committer | github-actions <github-actions@github.com> | 2022-08-22 22:19:02 +0000 |
| commit | a33e2323a7b2ba74cd4cd51ae063d4c1e429cb84 (patch) | |
| tree | 55e152e6e129ab5c7c23d33c8a57556078751f2f | |
| parent | add veridian language server for verilog/systemverilog (#2058) (diff) | |
| download | nvim-lspconfig-a33e2323a7b2ba74cd4cd51ae063d4c1e429cb84.tar nvim-lspconfig-a33e2323a7b2ba74cd4cd51ae063d4c1e429cb84.tar.gz nvim-lspconfig-a33e2323a7b2ba74cd4cd51ae063d4c1e429cb84.tar.bz2 nvim-lspconfig-a33e2323a7b2ba74cd4cd51ae063d4c1e429cb84.tar.lz nvim-lspconfig-a33e2323a7b2ba74cd4cd51ae063d4c1e429cb84.tar.xz nvim-lspconfig-a33e2323a7b2ba74cd4cd51ae063d4c1e429cb84.tar.zst nvim-lspconfig-a33e2323a7b2ba74cd4cd51ae063d4c1e429cb84.zip | |
docs: update server_configurations.md
skip-checks: true
| -rw-r--r-- | doc/server_configurations.md | 37 | ||||
| -rw-r--r-- | doc/server_configurations.txt | 37 |
2 files changed, 74 insertions, 0 deletions
diff --git a/doc/server_configurations.md b/doc/server_configurations.md index dc4170e7..3862fbe5 100644 --- a/doc/server_configurations.md +++ b/doc/server_configurations.md @@ -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 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 |
