Stats
Actions
Tags
From r-skills
R language server providing code intelligence for R — diagnostics, go-to-definition, find references, hover documentation, and completion for .R and .r files.
This LSP server requires Rto 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": {
"R": {
"command": "R",
"extensionToLanguage": {
".R": "R",
".r": "R"
},
"args": [
"--no-echo",
"-e",
"languageserver::run()"
],
"env": {
"R_PROFILE_USER": "${CLAUDE_PLUGIN_ROOT}/config/agent.Rprofile"
}
}
}
}File extensions mapped to language identifiers
Server configuration and transport parameters
RstdioCommand-line arguments passed to the server process
Environment variables set when the server starts
R_PROFILE_USER=${CLAUDE_PLUGIN_ROOT}/config/agent.RprofileInitialization options and workspace settings
Settings:
{
"lint_cache": true,
"diagnostics_cache_ttl": 15
}npx claudepluginhub jsperger/llm-r-skills --plugin r-skills