Editor Setup
Configure your IDE for the best experience with AI coding tools.
VS Code
Extensions
| Extension | Purpose |
|---|---|
| GitHub Copilot | Inline code completions |
| GitHub Copilot Chat | AI chat sidebar |
| Claude Code (Anthropic) | Claude Code integration |
Recommended settings
{
"editor.inlineSuggest.enabled": true,
"github.copilot.enable": {
"*": true,
"plaintext": false,
"markdown": true
}
}JetBrains IDEs
Plugins
- Open Settings > Plugins > Marketplace
- Install GitHub Copilot
- Restart the IDE
- Sign in via Tools > GitHub Copilot > Login
Terminal (Claude Code)
Claude Code runs in your terminal. No editor plugin needed for the CLI:
npm install -g @anthropic-ai/claude-code
claudeFor VS Code integration, install the Claude Code extension which provides an embedded terminal panel.