blob: 924b2158704f03b16c57b0c5f243bb8bd77f2963 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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
|