Stats
Actions
Tags
Solidity Language Server provides code intelligence for Solidity — diagnostics, go-to-definition, find references, hover information, and symbol listing for .sol files.
This LSP server requires solidity-language-serverto be installed on your system. Make sure it's available in your PATH before enabling.
Copy this JSON into your .lsp.json to enable this server
Add to your .lsp.json or plugin.json:
{
"lspServers": {
"solidity": {
"command": "solidity-language-server",
"extensionToLanguage": {
".sol": "solidity"
},
"args": [
"--stdio"
]
}
}
}File extensions mapped to language identifiers
Server configuration and transport parameters
solidity-language-serverstdioCommand-line arguments passed to the server process
Initialization options and workspace settings
npx claudepluginhub asyncswap/skills