From 96267116f04d046099517ea777152dd3caf97316 Mon Sep 17 00:00:00 2001 From: Alan Chester Date: Sun, 29 Mar 2026 17:06:09 -0400 Subject: [PATCH] feat: remove JetBrains IDEs, keep Cursor for agentic workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit GoLand, IntelliJ IDEA, and PyCharm removed from Brewfile. Shifting fully to Claude Code + Cursor for development — AI-native tooling replaces the traditional IDE suite. Cursor stays: works alongside Claude Code, fits the vibe coding workflow, and is small enough (~500MB) to include in Brewfile.vm for VM tests. Brewfile.vm updated to include Cursor now that the disk budget is no longer constrained by the JetBrains suite. Co-Authored-By: Claude Sonnet 4.6 --- Brewfile | 5 +---- Brewfile.vm | 9 +++------ README.md | 1 - 3 files changed, 4 insertions(+), 11 deletions(-) diff --git a/Brewfile b/Brewfile index e20b99e..8095274 100644 --- a/Brewfile +++ b/Brewfile @@ -37,9 +37,6 @@ cask "font-meslo-lg-nerd-font" # ── GUI Apps ───────────────────────────────────────────────────────────────── cask "iterm2" -cask "cursor" +cask "cursor" # AI-first editor (works alongside Claude Code) cask "docker" -cask "goland" -cask "intellij-idea" -cask "pycharm" cask "mongodb-compass" diff --git a/Brewfile.vm b/Brewfile.vm index 54af916..444b9e0 100644 --- a/Brewfile.vm +++ b/Brewfile.vm @@ -1,10 +1,6 @@ # Brewfile.vm — used by the VM acceptance test (scripts/vm-acceptance-test.sh) -# Full environment minus the large JetBrains IDEs and Cursor, which exceed the -# 50GB Tart base image disk limit. Everything else — CLI tools, Docker, iTerm2, -# MongoDB Compass, fonts — is included and tested. -# -# IDEs omitted: cursor, goland, intellij-idea, pycharm -# These are covered by the full Brewfile on a real machine. +# Mirrors the full Brewfile exactly. JetBrains IDEs were removed from the main +# Brewfile so this file no longer needs to omit anything for disk budget reasons. # ── Taps ───────────────────────────────────────────────────────────────────── tap "homebrew/cask-fonts" @@ -45,5 +41,6 @@ cask "font-meslo-lg-nerd-font" # ── GUI Apps ───────────────────────────────────────────────────────────────── cask "iterm2" +cask "cursor" # AI-first editor (works alongside Claude Code) cask "docker" cask "mongodb-compass" diff --git a/README.md b/README.md index fdca2c0..b234ea3 100644 --- a/README.md +++ b/README.md @@ -101,7 +101,6 @@ To reconfigure MCPs: `bash scripts/setup-mcps.sh` | **iTerm2** | Terminal (with custom color profile) | | **Cursor** | AI-powered editor | | **Docker Desktop** | Container runtime | -| **GoLand / IntelliJ / PyCharm** | JetBrains IDEs | | **MongoDB Compass** | Database GUI | | **Meslo LG Nerd Font** | Powerline-compatible font for terminal |