#!/usr/bin/env bash set -e ln -sf "$PWD/.bash_profile" "$HOME/.bash_profile" ln -sf "$PWD/.bashrc" "$HOME/.bashrc" ln -sf "$PWD/.inputrc" "$HOME/.inputrc" ln -sf "$PWD/.tmux.conf" "$HOME/.tmux.conf" ln -sf "$PWD/.vimrc" "$HOME/.vimrc" mkdir -p "$HOME/.config" ln -sf "$PWD/.vim" "$HOME/.vim" ln -sf "$PWD/alacritty" "$HOME/.config/alacritty" ln -sf "$PWD/ghostty" "$HOME/.config/ghostty" ln -sf "$PWD/powershell" "$HOME/.config/powershell" mkdir -p "$HOME/.local" ln -sf "$PWD/snippets" "$HOME/.local/snippets" ln -sf "$PWD/scripts" "$HOME/.local/scripts"