mirror of
https://github.com/anthropics/claude-plugins-official.git
synced 2026-01-30 04:22:03 +00:00
Merge pull request #161 from clackbib/habib/add_kotlin_lsp
Add Kotlin LSP plugin for code intelligence
This commit is contained in:
@@ -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",
|
"name": "csharp-lsp",
|
||||||
"description": "C# language server for code intelligence",
|
"description": "C# language server for code intelligence",
|
||||||
|
|||||||
16
plugins/kotlin-lsp/README.md
Normal file
16
plugins/kotlin-lsp/README.md
Normal 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)
|
||||||
Reference in New Issue
Block a user