tools · · 2 min read

Change Cursor Activity Bar to Vertical (Like VS Code)

A quick guide to change workbench.activityBar.orientation from horizontal (top) to vertical (side) in Cursor editor.

Cursor’s activity bar sits at the top by default, while VS Code puts it on the side. If you prefer the vertical layout like VS Code, you can switch it in a few steps.

Default: horizontal (top)

Cursor activity bar in horizontal orientation

Change via UI Settings ⚙️

  1. Open Settings with Ctrl + , (or Cmd + , on macOS)
  2. In the search bar, type: activity bar orientation
  3. Find Workbench: Activity Bar: Orientation
  4. Change from top to vertical
  5. The change applies immediately

Change via settings.json 📝

For direct control, edit settings.json:

  1. Press Ctrl + Shift + P (or Cmd + Shift + P on macOS)
  2. Run: Preferences: Open User Settings (JSON)
  3. Add or update:
{
  "workbench.activityBar.orientation": "vertical"
}

Save the file and the activity bar moves to the left.

Result: vertical (side)

Cursor activity bar in vertical orientation

Available Options 🎛️

workbench.activityBar.orientation supports two values:

  • "top" — Activity bar on top (Cursor default)
  • "vertical" — Activity bar on the left (like VS Code)

Extra Tips 🔧

To tweak activity bar width or visibility:

{
  "workbench.activityBar.orientation": "vertical",
  "workbench.activityBar.location": "side"
}

To hide the activity bar:

{
  "workbench.activityBar.visible": false
}

💡 Note: With vertical, Cursor’s layout matches VS Code more closely, which helps if you often switch between the two.


Done. Your activity bar is now on the side like VS Code, and the change takes effect without restarting the editor. ✨