blob: 3927cfe9b2e71bc503e7d70e2d9fe0667678421f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
---@brief
---
--- https://github.com/ghdl/ghdl-language-server
---
--- A language server for VHDL, using ghdl as its backend.
---
--- `ghdl-ls` is part of pyghdl, for installation instructions see
--- [the upstream README](https://github.com/ghdl/ghdl/tree/master/pyGHDL/lsp).
---@type vim.lsp.Config
return {
cmd = { 'ghdl-ls' },
filetypes = { 'vhdl' },
root_markers = { 'hdl-prj.json', '.git' },
}
|