Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ The `.zshrc` file sources other configuration files in this order:
- `precmd` calculates elapsed time after command completes
- Timer only displayed if command takes >0 seconds

**Bootstrap Process** (bootstrap.sh:76-100)
**Bootstrap Process** (bootstrap.sh:172-201)
- Uses `rsync` to sync `home/` directory contents to `~`
- Installs tmux plugin manager (TPM) if not present
- TPM must be manually activated in tmux with `prefix + I` after first install
Expand Down
11 changes: 11 additions & 0 deletions bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,17 @@ for arg in "$@"; do
case "$arg" in
--force|-f) FORCE=true ;;
--pull|-p) PULL=true ;;
--help|-h)
echo "Usage: ./bootstrap.sh [OPTIONS]"
echo ""
echo "Install dotfiles from home/ to ~"
echo ""
echo "Options:"
echo " -f, --force Skip confirmation prompt"
echo " -p, --pull Pull latest changes before installing"
echo " -h, --help Show this help message"
exit 0
;;
esac
done

Expand Down