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

推荐订阅源

雷峰网
雷峰网
博客园 - 聂微东
酷 壳 – CoolShell
酷 壳 – CoolShell
宝玉的分享
宝玉的分享
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
罗磊的独立博客
Hugging Face - Blog
Hugging Face - Blog
T
Tailwind CSS Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
IT之家
IT之家
博客园_首页
博客园 - 三生石上(FineUI控件)
博客园 - 叶小钗
Apple Machine Learning Research
Apple Machine Learning Research
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
量子位
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
人人都是产品经理
人人都是产品经理
美团技术团队
小众软件
小众软件
Jina AI
Jina AI
S
SegmentFault 最新的问题
博客园 - Franky
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com

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
My Terminal Setup: Zsh, Oh My Zsh, Powerlevel10k and Tmux
G Sudarshan · 2026-04-29 · via DEV Community

This is my repeatable terminal setup for a new laptop. The goal is simple: install the core tools, clone my public config repo, link the config files, and get the same shell and tmux experience everywhere.

My setup uses:

  • zsh as the shell
  • Oh My Zsh for shell framework and plugins
  • Powerlevel10k as the prompt theme
  • zsh-autosuggestions for command suggestions
  • zsh-syntax-highlighting for command highlighting
  • tmux for terminal multiplexing
  • A custom .tmux.conf with pane shortcuts, mouse support, vi copy mode, and a simple status bar

Terminal

1. Install System Dependencies

macOS

Install Homebrew if it is not already installed:

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

Enter fullscreen mode Exit fullscreen mode

Install the tools:

brew install git zsh tmux reattach-to-user-namespace

Enter fullscreen mode Exit fullscreen mode

reattach-to-user-namespace is used by my tmux config so copy mode can pipe selected text to pbcopy on macOS.

Ubuntu/Debian

sudo apt update
sudo apt install -y git zsh tmux curl

Enter fullscreen mode Exit fullscreen mode

Note: my current tmux copy binding is macOS-specific because it uses pbcopy. On Linux, replace the tmux copy command with a Linux clipboard tool such as xclip or xsel.

2. Make Zsh the Default Shell

Check where zsh is installed:

which zsh

Enter fullscreen mode Exit fullscreen mode

Change the default shell:

chsh -s "$(which zsh)"

Enter fullscreen mode Exit fullscreen mode

Close and reopen the terminal after this step.

3. Install Oh My Zsh

sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"

Enter fullscreen mode Exit fullscreen mode

This creates the ~/.oh-my-zsh directory and a default ~/.zshrc.

4. Install Powerlevel10k

Clone the Powerlevel10k theme into the Oh My Zsh custom themes directory:

git clone --depth=1 https://github.com/romkatv/powerlevel10k.git \
  "${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k"

Enter fullscreen mode Exit fullscreen mode

My .zshrc uses:

ZSH_THEME="powerlevel10k/powerlevel10k"

Enter fullscreen mode Exit fullscreen mode

Powerlevel10k needs a Nerd Font for the prompt symbols to render correctly. Install the recommended MesloLGS NF font from the Powerlevel10k font instructions, then set that font in your terminal app.

5. Install Zsh Plugins

My .zshrc enables these plugins:

plugins=(git zsh-autosuggestions zsh-syntax-highlighting)

Enter fullscreen mode Exit fullscreen mode

Install the custom plugins:

git clone https://github.com/zsh-users/zsh-autosuggestions \
  "${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/plugins/zsh-autosuggestions"

git clone https://github.com/zsh-users/zsh-syntax-highlighting.git \
  "${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting"

Enter fullscreen mode Exit fullscreen mode

The git plugin comes built into Oh My Zsh, so it does not need a separate install.

6. Clone My Config Repo

Clone the public repo where I keep my config files:

DOTFILES_REPO="https://github.com/G-Sudarshan/configs.git"
DOTFILES_DIR="$HOME/dotfiles"

git clone "$DOTFILES_REPO" "$DOTFILES_DIR"

Enter fullscreen mode Exit fullscreen mode

I keep these files in the repo, update as required:

.zshrc
.p10k.zsh
.tmux.conf

Enter fullscreen mode Exit fullscreen mode

Reload zsh:

source ~/.zshrc

Enter fullscreen mode Exit fullscreen mode

If Powerlevel10k asks configuration questions, run:

p10k configure

Enter fullscreen mode Exit fullscreen mode

7. Verify the Setup

Check zsh:

echo $SHELL
echo $ZSH_THEME

Enter fullscreen mode Exit fullscreen mode

Check that the plugins exist:

ls "${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/plugins"

Enter fullscreen mode Exit fullscreen mode

Check tmux:

tmux -V
tmux

Enter fullscreen mode Exit fullscreen mode

Inside tmux, reload the config:

tmux source-file ~/.tmux.conf

Enter fullscreen mode Exit fullscreen mode

10. Tmux Shortcuts in My Config

My tmux config includes these shortcuts:

  • prefix + | splits the window horizontally
  • prefix + - splits the window vertically
  • Alt + Left/Right/Up/Down moves between panes without pressing the prefix key
  • Mouse mode is enabled
  • Copy mode uses vi keys
  • Press y in tmux copy mode to copy selected text to the macOS clipboard

The status bar is kept simple and shows the date and time on the right.

Fresh Laptop Checklist

# 1. Install tools
brew install git zsh tmux reattach-to-user-namespace

# 2. Set zsh as default shell
chsh -s "$(which zsh)"

# 3. Install Oh My Zsh
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"

# 4. Install Powerlevel10k
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git \
  "${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k"

# 5. Install plugins
git clone https://github.com/zsh-users/zsh-autosuggestions \
  "${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/plugins/zsh-autosuggestions"

git clone https://github.com/zsh-users/zsh-syntax-highlighting.git \
  "${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting"

# 6. Clone dotfiles
DOTFILES_REPO="https://github.com/G-Sudarshan/configs.git"
DOTFILES_DIR="$HOME/dotfiles"
git clone "$DOTFILES_REPO" "$DOTFILES_DIR"


# 7. Reload shell
source ~/.zshrc

Enter fullscreen mode Exit fullscreen mode

After this, the terminal should have the same prompt, plugins, and tmux behavior as my main machine.