aboutsummaryrefslogtreecommitdiffstats
path: root/lua/lspconfig/svls.lua
blob: 9da85c6836e6ef57801089d9fe134ca858e6fc67 (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