Stats
Actions
Tags
Help us improve
Share bugs, ideas, or general feedback.
From dexter-lsp
Provides code intelligence for Elixir and Phoenix HEEx templates — diagnostics, go-to-definition, find references, and hover info via the Dexter language server.
npx claudepluginhub remoteoss/dexter --plugin dexter-lspThis LSP server requires dexterto 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": {
"dexter": {
"command": "dexter",
"extensionToLanguage": {
".ex": "elixir",
".exs": "elixir",
".heex": "phoenix-heex"
},
"args": [
"lsp"
]
}
}
}File extensions mapped to language identifiers
Server configuration and transport parameters
dexterstdioCommand-line arguments passed to the server process
Initialization options and workspace settings
Initialization Options:
{
"debug": "${user_config.debug}",
"followDelegates": "${user_config.follow_delegates}"
}Share bugs, ideas, or general feedback.