ai-docs/docs/ai/vscode-setup.md
Matt Bruce 8533890d2c refactored filesystem
Signed-off-by: Matt Bruce <matt.bruce1@toyota.com>
2026-02-12 16:33:53 -06:00

1.8 KiB
Raw Permalink Blame History

VS Code Initial Setup (All Platforms)

You are here: AI Docs Home > VS Code Initial Setup

Contents

  • Overview
  • Install VS Code
  • Install GitHub Copilot
  • Sign In and Verify
  • Try Copilot Suggestions
  • Next Steps

Overview

This guide covers the basic setup for Visual Studio Code and GitHub Copilot. It applies to all platforms (iOS, Android, cross-platform). Complete these steps before any platform-specific automation or MCP setup.


Install VS Code

  1. Download Visual Studio Code from code.visualstudio.com.
  2. Open the installer and follow the prompts to install.
  3. Launch VS Code.

Install GitHub Copilot

  1. In VS Code, open the Extensions sidebar (⇧⌘X).
  2. Search for "GitHub Copilot" and click Install.
  3. (Optional) Search for and install "GitHub Copilot Chat" for chat-based workflows.

Sign In and Verify

  1. After installing, youll be prompted to sign in with your GitHub account.
  2. Complete the sign-in flow in your browser.
  3. You must have Copilot access (Copilot Individual, Business, or Enterprise).
  4. Open a code file (e.g., Swift, Kotlin, Java, JS) and type // or start a function to trigger a suggestion.
  5. You should see Copilot suggestions inline.

Try Copilot Suggestions

  • Open a file for your platform (Swift for iOS, Kotlin for Android, etc.).
  • Type a comment or function signature, e.g.:
    • // Create a function to validate an email address.
    • fun main() { (for Kotlin)
  • Accept a suggestion with Tab or Enter.
  • Open the Copilot Chat sidebar and try a prompt, e.g.:
    • "Write a function to reverse a string in Kotlin."

Next Steps