1
0
mirror of https://github.com/tiyn/wiki.git synced 2025-10-21 23:21:16 +02:00

vhdl: added basic guide and vim integration

This commit is contained in:
TiynGER
2021-04-25 19:48:05 +02:00
parent ee0ec63f69
commit 3b97b67f7c
2 changed files with 87 additions and 0 deletions

28
wiki/linux/vim/vhdl.md Normal file
View File

@@ -0,0 +1,28 @@
# VHDL in Vim
VHDL is a hardware description language.
In this entry we will focus on making vim support VHDL.
## Linting
### Coc
To enable linting and other language server features for [coc](coc.md) you need
to install [hdl-checker](https://github.com/suoto/hdl_checker).
After that you need to add the following lines to your coc config file.
```json
{
"hdlChecker": {
"command": "hdl_checker",
"args": [
"--lsp"
],
"filetypes": [
"vhdl",
"verilog",
"systemverilog"
]
}
}
```