Move lsp config to local file structure
This commit is contained in:
parent
e5c3bb2492
commit
20801272fc
383 changed files with 11829 additions and 114 deletions
19
.config/nvim/lsp/solang.lua
Normal file
19
.config/nvim/lsp/solang.lua
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
---@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' },
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue