Skip to content

Commit

Permalink
docs: add systemverilog/verible language server setup guide (#2416)
Browse files Browse the repository at this point in the history
  • Loading branch information
johnnymn authored Feb 8, 2024
1 parent 3423763 commit 7811ef3
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions docs/src/language_servers.md
Original file line number Diff line number Diff line change
Expand Up @@ -685,6 +685,26 @@ Follow installation instructions on [LSP-svelte](https://github.com/sublimelsp/L

Follow installation instructions on [LSP-SourceKit](https://github.com/sublimelsp/LSP-SourceKit).

## SystemVerilog

1. Install the [SystemVerilog](https://packagecontrol.io/packages/SystemVerilog) package from Package Control for syntax highlighting.
2. Make sure you install the latest version of [Verible](https://github.com/chipsalliance/verible).
3. Open `Preferences > Package Settings > LSP > Settings` and add the `"verible"` client configuration to the `"clients"`:

```jsonc
{
"clients": {
"verible": {
"enabled": true,
"command": [
"/PATH/TO/verible-verilog-ls"
],
"selector": "source.systemverilog"
}
}
}
```

## TAGML

Follow installation instructions on [LSP-tagml](https://github.com/HuygensING/LSP-tagml).
Expand Down

0 comments on commit 7811ef3

Please sign in to comment.