Merge pull request #161 from clackbib/habib/add_kotlin_lsp

Add Kotlin LSP plugin for code intelligence
This commit is contained in:
Daisy S. Hollman
2026-01-07 14:21:25 -08:00
committed by GitHub
2 changed files with 39 additions and 0 deletions

View File

@@ -167,6 +167,29 @@
}
}
},
{
"name": "kotlin-lsp",
"description": "Kotlin language server for code intelligence",
"version": "1.0.0",
"author": {
"name": "Anthropic",
"email": "support@anthropic.com"
},
"source": "./plugins/kotlin-lsp",
"category": "development",
"strict": false,
"lspServers": {
"kotlin-lsp": {
"command": "kotlin-lsp",
"args": ["--stdio"],
"extensionToLanguage": {
".kt": "kotlin",
".kts": "kotlin"
},
"startupTimeout" : 120000
}
}
},
{
"name": "csharp-lsp",
"description": "C# language server for code intelligence",

View File

@@ -0,0 +1,16 @@
Kotlin language server for Claude Code, providing code intelligence, refactoring, and analysis.
## Supported Extensions
`.kt`
`.kts`
## Installation
Install the Kotlin LSP CLI.
```bash
brew install JetBrains/utils/kotlin-lsp
```
## More Information
- [kotlin LSP](https://github.com/Kotlin/kotlin-lsp)