diff options
| author | Michael Lingelbach <m.j.lbach@gmail.com> | 2021-04-12 23:05:09 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-12 23:05:09 -0700 |
| commit | 66d8defffcf393704f619f47e358cc137781454c (patch) | |
| tree | 7cc42e280366fc482aab6d9f28c54b3e18f748c6 /lua | |
| parent | [docgen] Update CONFIG.md (diff) | |
| parent | New: Add svls for verilog and systemverilog support (diff) | |
| download | nvim-lspconfig-66d8defffcf393704f619f47e358cc137781454c.tar nvim-lspconfig-66d8defffcf393704f619f47e358cc137781454c.tar.gz nvim-lspconfig-66d8defffcf393704f619f47e358cc137781454c.tar.bz2 nvim-lspconfig-66d8defffcf393704f619f47e358cc137781454c.tar.lz nvim-lspconfig-66d8defffcf393704f619f47e358cc137781454c.tar.xz nvim-lspconfig-66d8defffcf393704f619f47e358cc137781454c.tar.zst nvim-lspconfig-66d8defffcf393704f619f47e358cc137781454c.zip | |
Merge pull request #477 from dpretet/master
New: Add svls for verilog and systemverilog support
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/lspconfig/svls.lua | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/lua/lspconfig/svls.lua b/lua/lspconfig/svls.lua new file mode 100644 index 00000000..924b2158 --- /dev/null +++ b/lua/lspconfig/svls.lua @@ -0,0 +1,19 @@ +local configs = require 'lspconfig/configs' +local util = require 'lspconfig/util' + +local server_name = "svls" + +configs[server_name] = { + default_config = { + cmd = { "svls" }, + filetypes = { "verilog", "systemverilog" }, + root_dir = util.root_pattern(".git"); + }; + docs = { + description = [[ + https://github.com/dalance/svls + Language server for verilog and SystemVerilog + ]]; + } +} +-- vim:et ts=2 sw=2 |
