From 4751449e9defed7130a024492d1f9d32129a2447 Mon Sep 17 00:00:00 2001 From: Ward Tentacle Date: Sun, 10 Aug 2025 09:20:41 +0000 Subject: [PATCH] add bootstrap that symlinks configs --- bootstrap.sh | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 bootstrap.sh diff --git a/bootstrap.sh b/bootstrap.sh new file mode 100644 index 0000000..d496a09 --- /dev/null +++ b/bootstrap.sh @@ -0,0 +1,7 @@ +#!/bin/sh +set -eu +cd "$(dirname "$0")" +[ -f .env ] && . ./.env +for f in shell/bashrc editor/vimrc; do + ln -sf "$PWD/$f" "$HOME/.$(basename "$f")" +done