by isomoes
Zed extension for Claude Code CLI integration
# Add to your Claude Code skills
git clone https://github.com/isomoes/claude-code-zedThis repository has been archived and is no longer actively maintained.
We now focus on VSCode integration for Claude Code CLI. If you're looking for Claude Code editor integration, we recommend using VSCode instead of Zed.
Thank you to everyone who starred this repository and supported our work! 🙏
If you want to continue development of Zed integration, feel free to fork this repository and build upon this codebase.
A two-part system that integrates Claude Code CLI with Zed editor for AI-assisted coding.

Clone the repository:
No comments yet. Be the first to share your thoughts!
git clone https://github.com/jiahaoxiang2000/claude-code-zed.git
Install the Zed extension (Development Mode):
Cmd+Shift+P (macOS) or Ctrl+Shift+P (Linux/Windows) to open the command paletteclaude-code-extension folder in your cloned repositoryThe claude-code-server is automatically downloaded:
claude-code-server binary from GitHub releasesThe Claude Code extension runs as a Language Server Protocol (LSP) server and automatically activates when you open files with the following extensions:
.rs).js).ts, .tsx).py).md)To enable Claude Code integration for additional file types, edit the claude-code-extension/extension.toml file:
[language_servers.claude-code-server]
name = "Claude Code Server"
languages = ["Rust", "JavaScript", "TypeScript", "Python", "Markdown", "Go", "Java"]
[language_servers.claude-code-server.language_ids]
"Rust" = "rust"
"JavaScript" =...