mirror of
https://github.com/tiyn/wiki.git
synced 2025-04-04 07:47:45 +02:00
582 B
582 B
VHDL in Vim
VHDL is a hardware description language. In this article we will focus on making vim support VHDL.
Linting
Coc
To enable linting and other language server features for coc you need to install hdl-checker. After that you need to add the following lines to your coc config file.
{
"hdlChecker": {
"command": "hdl_checker",
"args": [
"--lsp"
],
"filetypes": [
"vhdl",
"verilog",
"systemverilog"
]
}
}