dotfiles/install.sh

16 lines
235 B
Bash
Raw Normal View History

2024-02-16 14:07:15 +01:00
#!/usr/bin/env bash
set -e
cd "$(dirname "${BASH_SOURCE}")"
CWD=$(pwd)
2024-02-16 14:21:36 +01:00
# HOME="$CWD/home"
2024-02-16 14:07:15 +01:00
# git
mkdir -p "$HOME/.config/git"
ln -sf "$CWD/git/config" "$HOME/.config/git/config"
ln -sf "$CWD/git/ignore" "$HOME/.config/git/ignore"