Stats
Actions
Tags
From allium
Allium language server provides code intelligence for Allium — diagnostics, go-to-definition, find references, and hover information for .allium files.
This LSP server requires allium-lspto 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": {
"allium": {
"command": "allium-lsp",
"extensionToLanguage": {
".allium": "allium"
},
"args": [
"--stdio"
]
}
}
}File extensions mapped to language identifiers
Server configuration and transport parameters
allium-lspstdioCommand-line arguments passed to the server process
Initialization options and workspace settings
npx claudepluginhub juxt/allium