diff options
| author | Xiretza <xiretza@xiretza.xyz> | 2022-06-14 23:07:34 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-06-14 23:07:34 +0200 |
| commit | 0fdd25f21b38d5230a4ac53d68378a3ff1b63bb4 (patch) | |
| tree | 9547146be9b6d211aa8ab183df5e83d68f089da1 /lua | |
| parent | docs: update server_configurations.md (diff) | |
| download | nvim-lspconfig-0fdd25f21b38d5230a4ac53d68378a3ff1b63bb4.tar nvim-lspconfig-0fdd25f21b38d5230a4ac53d68378a3ff1b63bb4.tar.gz nvim-lspconfig-0fdd25f21b38d5230a4ac53d68378a3ff1b63bb4.tar.bz2 nvim-lspconfig-0fdd25f21b38d5230a4ac53d68378a3ff1b63bb4.tar.lz nvim-lspconfig-0fdd25f21b38d5230a4ac53d68378a3ff1b63bb4.tar.xz nvim-lspconfig-0fdd25f21b38d5230a4ac53d68378a3ff1b63bb4.tar.zst nvim-lspconfig-0fdd25f21b38d5230a4ac53d68378a3ff1b63bb4.zip | |
feat: add configuration for ghdl-ls VHDL language server (#1812)
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/lspconfig/server_configurations/ghdl_ls.lua | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/lua/lspconfig/server_configurations/ghdl_ls.lua b/lua/lspconfig/server_configurations/ghdl_ls.lua new file mode 100644 index 00000000..0f9e1186 --- /dev/null +++ b/lua/lspconfig/server_configurations/ghdl_ls.lua @@ -0,0 +1,22 @@ +local util = require 'lspconfig.util' + +return { + default_config = { + cmd = { 'ghdl-ls' }, + filetypes = { 'vhdl' }, + root_dir = function(fname) + return util.root_pattern 'hdl-prj.json'(fname) or util.find_git_ancestor(fname) + end, + single_file_support = true, + }, + docs = { + description = [[ +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). +]], + }, +} |
