npx claudepluginhub shihyuho/dotfilesJDTLS with Lombok support for Java projects
Modular macOS dotfiles configuration focused on performance and maintainability.
AGENTS.md and dedicated skill for easy AI-assisted maintenancedotfiles/
├── .agents/ # Project-local AI skills and helper scripts
├── .github/ # CI workflows
├── brew/ # Homebrew Brewfile
├── config/ # App configs (claude, gemini, ghostty, opencode, yazi)
├── docs/ # Documentation, plans, and lessons
├── external/ # External source assets (aliases, prompt helpers)
├── git/ # Git configuration
├── manual/ # Manual install configs (see manual/README.md)
├── misc/ # Other configs (tmux, vimrc, vim runtime, etc.)
├── zsh/ # Zsh configuration (modular)
│ ├── core/ # Core functionality (PATH, completion, history, prompt)
│ ├── tools/ # Tool configurations (kubectl, git, fzf, etc.)
│ ├── aliases/ # Categorized aliases
│ ├── env.zsh # Early environment setup
│ └── rc.zsh # Main zsh entrypoint
├── AGENTS.md # AI agent guide
├── install.sh # Installation script
├── Makefile # Common setup, test, and maintenance commands
├── secrets.example # Template for local secrets
└── uninstall.sh # Uninstallation script
Tell Agent:
Fetch and follow instructions from https://raw.githubusercontent.com/shihyuho/dotfiles/refs/heads/main/docs/INSTALL.md
DOTFILES_DIR="${DOTFILES_DIR:-$HOME/.config/dotfiles}"
# Clone repository
git clone https://github.com/shihyuho/dotfiles.git "$DOTFILES_DIR"
cd "$DOTFILES_DIR"
# Complete setup (symlinks + Homebrew packages)
make setup
# Or step by step:
make install # Create symlinks only
make brew # Install Homebrew packages only
# First-time setup: create local secrets file
cp "$DOTFILES_DIR/secrets.example" ~/.secrets
chmod 600 ~/.secrets
# Then edit ~/.secrets and set sensitive env vars
# Uninstall managed symlinks (optional)
make uninstall
# Restart shell
exec zsh
make install also manages Claude and OpenCode paths, including
~/.claude/settings.json and paths under ~/.config/opencode/, including
opencode.json, oh-my-opencode-slim.json, commands/, agents/,
oh-my-opencode-slim/. If those paths already exist, the installer moves them into
~/.dotfiles_backup/... before creating symlinks.
After installation, edit config/claude/settings.json in this repo, not ~/.claude/settings.json.
See available commands: make help
See docs/TOOLS.md for complete tool list.
Performance First: Startup speed < 0.5s
Modular: Organized by functionality, easy to maintain
zsh/core/): Loaded in numeric orderzsh/tools/): Conditional loadingzsh/tools/dev/): Lazy loadingAI-Friendly:
AGENTS.md included.agents/skills/dotfiles-manager/ (project-level)# 1. Edit Brewfile
echo 'brew "tool-name"' >> brew/Brewfile
# 2. Install
make brew
# 3. Check status
make check-tool TOOL=tool-name
# 4. Test
make test
# Run all tests
make test
# Run CI-friendly tests
make test-ci
# Detailed startup analysis
make measure-startup
# Check specific tool
make check-tool TOOL=kubectl