Stats
Actions
Tags
From claude-lean4-lsp
Lean language server provides code intelligence for Lean — diagnostics, go-to-definition, find references, hover information, and type checking for .lean files.
This LSP server requires leanto 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": {
"lean-standalone": {
"command": "lean",
"extensionToLanguage": {
".lean": "lean"
},
"args": [
"--server"
]
}
}
}File extensions mapped to language identifiers
Server configuration and transport parameters
leanstdioCommand-line arguments passed to the server process
Initialization options and workspace settings
Initialization Options:
{}Settings:
{}npx claudepluginhub lucianoxu/claude-lean4-lsp