惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

H
Help Net Security
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园 - 【当耐特】
Microsoft Azure Blog
Microsoft Azure Blog
Google DeepMind News
Google DeepMind News
Apple Machine Learning Research
Apple Machine Learning Research
有赞技术团队
有赞技术团队
Y
Y Combinator Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
爱范儿
爱范儿
L
LangChain Blog
IT之家
IT之家
酷 壳 – CoolShell
酷 壳 – CoolShell
MongoDB | Blog
MongoDB | Blog
Hugging Face - Blog
Hugging Face - Blog
G
Google Developers Blog
T
Tailwind CSS Blog
Engineering at Meta
Engineering at Meta
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
宝玉的分享
宝玉的分享
博客园 - 三生石上(FineUI控件)
D
DataBreaches.Net
Recent Announcements
Recent Announcements
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
I Built a One-Command macOS Terminal Setup — Ghostty + Zs...
satyamsoni22 · 2026-05-11 · via DEV Community

Every time I set up a new Mac, I'd spend half a day doing the same thing — installing Homebrew, picking a terminal, configuring Zsh plugins, hunting for that one tool I forgot the name of, fixing a broken .zshrc. It was tedious, error-prone, and felt like something a script could handle.

So I built dev-accelerator — a one-command macOS terminal setup that gets you from a fresh Mac to a fully productive terminal environment in minutes.


What it sets up

╭─────────────────────────────────────────────────────────────────────────╮
│  dev-accelerator  ─  Ghostty + Zsh + 30 modern CLI tools                │
├─────────────────────────────────────────────────────────────────────────┤
│                                                                          │
│  ❯ ls                                                                    │
│  󰉋 src/   󰉋 tests/   󰉋 docs/    setup.sh   install.sh   README.md      │
│                                                                          │
│  ❯ git log --oneline                                                     │
│  a3f1c2e  feat: add zoxide smart cd integration                          │
│  b89d041  fix: backup .zshrc before modification                         │
│                                                                          │
│  satyam@macbook  ~/projects/dev-accelerator  main ✓  took 0.3s          │
╰─────────────────────────────────────────────────────────────────────────╯

Enter fullscreen mode Exit fullscreen mode

Here's the full picture of what gets installed and configured:

  • Ghostty — a GPU-accelerated terminal emulator, pre-configured with the Catppuccin theme
  • Zsh with zsh-autosuggestions and zsh-syntax-highlighting
  • Starship prompt using the gruvbox-rainbow preset
  • Atuin — shell history that syncs across machines and is actually searchable
  • Zoxide — a smarter cd that learns your most-visited directories
  • FZF — fuzzy finder wired into your shell for files, history, and more
  • Mise — a single runtime version manager replacing nvm, pyenv, and rbenv

Plus a full suite of modern CLI replacements for the outdated Unix defaults you've been living with.


Modern CLI tools: out with the old

One of the best parts of this setup is swapping out stale Unix tools for modern, faster, friendlier alternatives:

Old tool New tool Why it's better
ls eza Icons, git status, tree view
cat bat Syntax highlighting, line numbers, git diff
grep ripgrep 10–100x faster, respects .gitignore
find fd Simpler syntax, faster, colorized output
cd zoxide Learns your habits, jump with z proj
top bottom (btm) Beautiful TUI with graphs
ps procs Human-readable, colorized, searchable
man tealdeer Practical examples instead of dense manpages
git CLI lazygit / gitui Full TUI git workflows
tar/zip ouch One tool for all archive formats

One command to rule them all

curl -fsSL https://raw.githubusercontent.com/satyamsoni2211/dev-accelerator/main/install.sh | bash

Enter fullscreen mode Exit fullscreen mode

That's it. The script:

  1. Checks if Homebrew is installed — installs it if not
  2. Dynamically checks which packages are already installed — skips them
  3. Configures Zsh with all plugins
  4. Sets up the Starship prompt
  5. Creates the Ghostty config with Catppuccin theme
  6. Backs up your existing .zshrc before touching anything
  7. Sets Zsh as your default shell

The "backs up your .zshrc" part matters — I've seen too many setup scripts that just overwrite your config without asking.


Two ways to install

Not everyone wants to pipe a script into bash (fair!), so there's also a manual option:

Option 1: One-click (above)

Best for getting started fast on a new machine.

Option 2: Homebrew + setup script

git clone https://github.com/satyamsoni2211/dev-accelerator.git
cd dev-accelerator
./setup.sh

Enter fullscreen mode Exit fullscreen mode

Gives you an interactive prompt to choose what to install.


2025/2026 tools worth knowing

Beyond the classics, the setup also includes some newer tools that have become part of my daily workflow:

  • Zellij — a terminal workspace (tmux alternative) with a much friendlier UX and built-in layouts
  • delta — a git diff pager with syntax highlighting that makes reviewing changes actually pleasant
  • tokei — counts lines of code by language, blazing fast
  • uv — the new standard for Python package management; it's dramatically faster than pip
  • direnv — automatically loads .env files when you enter a directory, unloads when you leave

What's next

A few things I'm planning to add:

  • Linux support (Ubuntu/Debian)
  • Neovim pre-configuration as an optional module
  • A --minimal flag for the install script (just shell + core tools, no terminal emulator)
  • iTerm2 as an alternative to Ghostty for those who prefer it

Give it a try

The project is open source under the MIT license.

👉 github.com/satyamsoni2211/dev-accelerator

If you try it out, I'd love to hear what tools you'd add or what your current setup looks like. And if you find a bug, issues and PRs are very welcome — see CONTRIBUTING.md to get started.


What's your go-to terminal tool that most developers haven't heard of? Drop it in the comments — I'm always looking for new additions.