#!/usr/bin/env bash
# Fresh-box bootstrap. Usage:  curl -sL files.bewf.space/setup.sh | bash
set -euo pipefail
BASE="https://files.bewf.space"

echo "[*] pulling dotfiles from $BASE"
curl -sSL "$BASE/dotfiles/bashrc"   -o "$HOME/.bashrc"
curl -sSL "$BASE/dotfiles/vimrc"    -o "$HOME/.vimrc"
curl -sSL "$BASE/dotfiles/tmux.conf" -o "$HOME/.tmux.conf"

echo "[*] done. run: source ~/.bashrc"
