Home Docs Blog Product Contact

Workspace Configuration

OmniIDE supports workspace-specific settings that override your global user settings. This is useful for configuring different AI models or sandbox rules per project.

Creating Workspace Settings

Create a .vscode/settings.json file in your project root:

{
  "omni.gemini.model": "gemini-pro",
  "omni.sandbox.allowNetwork": true,
  "omni.agent.maxRetries": 5
}

Multi-Root Workspaces

OmniIDE supports multi-root workspaces where you can open multiple project folders simultaneously. Each folder can have its own settings.

Related