add bootstrap that symlinks configs

This commit is contained in:
2025-08-10 09:20:41 +00:00
parent f432c8ca51
commit 4751449e9d

7
bootstrap.sh Normal file
View File

@@ -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