Setup & Install
Get GitHub Copilot Chat running in VS Code in under five minutes. This guide covers prerequisites, extension installation, authentication, and configuration.
Prerequisites
Before you begin, make sure you have the following:
- Visual Studio Code — Version 1.84 or later. Download from code.visualstudio.com.
- GitHub account — You need a GitHub account to authenticate. Sign up at github.com if you do not have one.
- GitHub Copilot subscription — Copilot Chat requires an active GitHub Copilot subscription (Individual, Business, or Enterprise). A free trial is available for new users.
Step-by-Step Installation
-
Install the GitHub Copilot Extension
Open VS Code and go to the Extensions view (Ctrl+Shift+X). Search for "GitHub Copilot" and click Install. This extension provides both inline code completions and the Chat feature.
-
Install the GitHub Copilot Chat Extension
In the same Extensions view, search for "GitHub Copilot Chat" and click Install. This extension adds the chat panel, inline chat, and quick chat features.
-
Sign In with GitHub
After installation, VS Code will prompt you to sign in. Click "Sign in to GitHub" in the notification that appears. Your browser will open for GitHub authentication. Authorize the application and return to VS Code.
-
Verify Installation
Look for the Copilot icon in the VS Code status bar (bottom right). If it shows a small chat icon, both extensions are active and ready to use.
Configuring Settings
Copilot Chat works well out of the box, but you can fine-tune it through VS Code settings. Open settings with Ctrl+, and search for "Copilot".
{
// Enable or disable Copilot Chat
"github.copilot.chat.enabled": true,
// Control where the chat panel appears
"github.copilot.chat.localeOverride": "en",
// Enable inline chat suggestions
"github.copilot.inlineSuggest.enable": true,
// Control which languages Copilot is active for
"github.copilot.enable": {
"*": true,
"plaintext": false,
"markdown": true
}
}
Opening the Chat Panel
There are several ways to open Copilot Chat:
| Method | How |
|---|---|
| Chat Panel | Ctrl+Shift+I (Windows/Linux) or Cmd+Shift+I (Mac) |
| Inline Chat | Ctrl+I (Windows/Linux) or Cmd+I (Mac) |
| Quick Chat | Ctrl+Shift+Alt+L |
| Activity Bar | Click the Copilot Chat icon in the left activity bar |
| Command Palette | Ctrl+Shift+P → type "Copilot Chat" |
💡 Try It: Your First Chat Message
Open the chat panel with Ctrl+Shift+I and type the following message:
Lilly Tech Systems