Back to 💻 Local Dev Environment

VS Code Settings Sync

VS CodeDXConfig
---
description: Standardize VS Code settings across the team
---

1. **Create settings.json**:
- Create .vscode/settings.json for workspace-specific settings.
// turbo
- Run mkdir -p .vscode && printf '{\n "editor.formatOnSave": true,\n "editor.defaultFormatter": "esbenp.prettier-vscode",\n "editor.codeActionsOnSave": {\n "source.fixAll.eslint": true\n }\n}' > .vscode/settings.json

2. **Create extensions.json**:
- Recommend extensions for the team.
// turbo
- Run printf '{\n "recommendations": [\n "dbaeumer.vscode-eslint",\n "esbenp.prettier-vscode",\n "bradlc.vscode-tailwindcss"\n ]\n}' > .vscode/extensions.json

3. **Pro Tips**:
- Commit the .vscode folder (excluding user-specific files) to git.
By Antigravity Team

How to Use This Workflow

Option A: Project-Specific (Recommended)

  1. Click "Download" above
  2. In your project, create the directory: .agent/workflows/
  3. Save the file as sync-vscode-settings-extensions-team-consistency.md
  4. In Antigravity, type /sync_vscode_settings_extensions_team_consistency or just describe what you want to do

Learn more about workflows →

Related Workflows

Recommended Rules

View more rules →

Recommended MCP Servers

View more MCP servers →

Take It Further

Maximize your productivity with these powerful resources

📋

Define Your Standards

Set up coding standards to ensure this workflow produces consistent, high-quality results.

Browse Rules Library
📖

Master Workflows

Learn how to create custom workflows, use Turbo Mode, and build your automation library.

Complete Guide