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