|
Terminal setup thread - share your shell, prompt, and tools - Printable Version +- TalkativeTurtles (https://talkativeturtles.club) +-- Forum: Technology (https://talkativeturtles.club/forumdisplay.php?fid=2) +--- Forum: Operating Systems & Linux (https://talkativeturtles.club/forumdisplay.php?fid=13) +--- Thread: Terminal setup thread - share your shell, prompt, and tools (/showthread.php?tid=83) |
RE: Terminal setup thread - share your shell, prompt, and tools - Zero Two - 06-22-2026 Worth mentioning: tmux deserves its own mention in any terminal setup discussion. If you're not using a terminal multiplexer, you're managing multiple terminal windows manually and losing session state every time you close the terminal. tmux gives you:
My config highlights:
tmux-resurrect plugin saves and restores sessions across reboots. Combine with tmux-continuum for automatic saving every 15 minutes. System reboots without losing your layout. Terminal setup thread - share your shell, prompt, and tools - Zero Two - 06-22-2026 What does your terminal actually look like and what are you running? My current setup: Shell: Zsh with a small set of plugins via zinit (faster startup than Oh My Zsh):
Prompt: Starship - cross-shell, fast (written in Rust), shows git branch/status, language versions, exit codes. One config file, works the same in Zsh and Fish. Tools that replaced standard ones:
Terminal emulator: Ghostty - fast, supports ligatures, good default config. All config lives in a dotfiles repo and gets installed via a stow-based script. New machine setup takes about 10 minutes. What's your terminal stack? |