13 lines
302 B
Lua
13 lines
302 B
Lua
|
|
---@brief
|
||
|
|
---
|
||
|
|
--- https://github.com/suoto/hdl_checker
|
||
|
|
--- Language server for hdl-checker.
|
||
|
|
--- Install using: `pip install hdl-checker --upgrade`
|
||
|
|
|
||
|
|
---@type vim.lsp.Config
|
||
|
|
return {
|
||
|
|
cmd = { 'hdl_checker', '--lsp' },
|
||
|
|
filetypes = { 'vhdl', 'verilog', 'systemverilog' },
|
||
|
|
root_markers = { '.git' },
|
||
|
|
}
|