Add coc-settings for hdl-checker

This commit is contained in:
flyingscorpio@arch-desktop 2021-09-22 20:35:28 +02:00
parent ae9f014a08
commit 01bd7433ca
2 changed files with 21 additions and 0 deletions

View file

@ -385,6 +385,9 @@ vim:
- run:
command: vim +BlackUpgrade +qall
condition: update
- symlink:
- dotfiles/vim/coc-settings.json
- ~/.vim/coc-settings.json
neovim:
- depend:
@ -397,6 +400,9 @@ neovim:
- symlink:
- dotfiles/vim/init.vim
- ~/.config/nvim/init.vim
- symlink:
- dotfiles/vim/coc-settings.json
- ~/.config/nvim/coc-settings.json
zsh:
- install:

View file

@ -0,0 +1,15 @@
{
"languageserver": {
"hdlChecker": {
"command": "hdl_checker",
"args": [
"--lsp"
],
"filetypes": [
"vhdl",
"verilog",
"systemverilog"
]
}
}
}