Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .claude-plugin/marketplace.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"name": "nuanced-dev",
"owner": {
"name": "Nuanced"
},
"plugins": [
{
"name": "lsp",
"description": "Nuanced LSP plugin for Claude Code",
"version": "0.5.3",
"homepage": "https://github.com/nuanced-dev/lsp",
"category": "development",
"source": "./clients/claude-code",
"strict": false
}
]
}
27 changes: 27 additions & 0 deletions clients/claude-code/.lsp.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"nuanced-lsp": {
"command": "nuanced-lsp",
"args": ["server", "."],
"extensionToLanguage": {
".c": "c",
".h": "c",
".cpp": "cpp",
".cc": "cpp",
".cxx": "cpp",
".hpp": "cpp",
".hxx": "cpp",
".C": "cpp",
".H": "cpp",
".cs": "csharp",
".go": "go",
".java": "java",
".php": "php",
".py": "python",
".pyi": "python",
".rb": "ruby",
".rs": "rust",
".js": "javascript",
".ts": "typescript"
}
}
}
30 changes: 30 additions & 0 deletions clients/claude-code/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Nuanced LSP plugin for Claude Code

Plugin to use the Nuanced LSP server with Claude Code.

## Installation

Install Nuanced LSP:

```bash
npm i -g @nuanced-dev/lsp
```

Add the Nuanced marketplace and install the plugin:

```bash
claude plugin marketplace add nuanced-dev/lsp
claude plugin install lsp@nuanced-dev
```

Start using the LSP tool in Claude Code.

## Caveats

- The plugin requires that Claude Code is started in the project root, otherwise the LSP workspace will be incorrect.

- Some people report that the LSP tool only works when running Claude Code thropugh NPM, not when using the native binaries.

## More Information

See [@nuanced-dev/lsp](https://www.npmjs.com/package/@nuanced-dev/lsp) package.