Dotfiles Installation Script

Run with: curl -fsLS prad.codes/apply | sh

View raw | Back to home

#!/bin/sh
# Install chezmoi and apply dotfiles
# Usage: curl -fsLS prad.codes/apply | sh

set -e

echo "🚀 Installing chezmoi and applying dotfiles from prnk28..."
echo ""

sh -c "$(curl -fsLS get.chezmoi.io)" -- init --apply prnk28

echo ""
echo "✅ Dotfiles installed successfully!"
echo "🔄 Run 'chezmoi update' to pull latest changes"