A blazing fast, maintainable, and feature-rich zsh configuration built for developers.
This configuration uses zsh's ZDOTDIR mechanism to keep everything organized in ~/.zshrc.d/:
.zshenvsetsZDOTDIR="$HOME/.zshrc.d"- Zsh automatically finds
.zshrcinside$ZDOTDIR .zshrcloads all numbered files in lexicographic order
Files are loaded in lexicographic order by the main .zshrc loader:
- 00-09: Environment setup (variables, PATH)
- 10-19: Core Zsh configuration (options, keybindings, tools)
- 20-29: Completions and interactive features
- 30-39: Plugin management and external integrations
- 50-59: UI/UX (prompt, themes)
- 60-69: User convenience (aliases, functions)
- 70-79: Local/machine-specific overrides
💡 Tip: Prefix a file with
_to disable it (e.g.,_30-antidote.zsh)
The configs/ directory contains external tool configurations.
This configuration requires Homebrew for package management:
# macOS
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"- ✅ macOS (Apple Silicon & Intel)
- ✅ Linux (not tested)
- ❌ Windows (not tested)
git clone git@github.com:f0rr0/dotfiles.git ~/.zshrc.d
cd ~/.zshrc.dThe bootstrap script handles everything automatically:
./scripts/bootstrap.shWhat it does:
- ✅ Verifies Homebrew installation
- ✅ Installs all required packages
- ✅ Symlinks
~/.zshenv→~/.zshrc.d/.zshenv - ✅ Backs up existing
~/.zshenvif needed
exec zsh -lUltra-fast plugin manager that generates static loading scripts for maximum performance.
Modern alternative to nvm, rbenv, pyenv - manage Node.js, Python, Ruby, and 100+ other tools.
Command-line fuzzy finder with extensive customization for file navigation, history search and autocompletions.
Smarter cd command that learns your habits and lets you jump to directories with minimal typing.
📖 Learn more about iTerm2 Shell Integration
Create 70-local.zsh (git-ignored) for machine-specific customizations:
# ~/.zshrc.d/70-local.zsh
export EDITOR="code"
alias ll="eza -la --git --icons"
# Add work-specific PATH
path=(/opt/work/bin $path)The bootstrap script installs these packages via Homebrew:
Modern CLI Replacements:
eza- Betterlsbat- Bettercatripgrep- Bettergrepfd- Betterfinddelta- Better git diffdust- Betterduprocs- Betterps
