mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2025-12-24 15:01:00 +01:00
20 lines
556 B
Lua
20 lines
556 B
Lua
---@brief
|
|
---
|
|
---A language server for Solidity
|
|
---
|
|
--- See the [documentation](https://solang.readthedocs.io/en/latest/installing.html) for installation instructions.
|
|
---
|
|
--- The language server only provides the following capabilities:
|
|
--- * Syntax highlighting
|
|
--- * Diagnostics
|
|
--- * Hover
|
|
---
|
|
--- There is currently no support for completion, goto definition, references, or other functionality.
|
|
|
|
---@type vim.lsp.Config
|
|
return {
|
|
cmd = { 'solang', 'language-server', '--target', 'evm' },
|
|
filetypes = { 'solidity' },
|
|
root_markers = { '.git' },
|
|
}
|