aboutsummaryrefslogtreecommitdiff
path: root/setup
blob: e6af741901e9c67df1cb42a800ec2ede3c303e2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/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/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"