blob: 5782fcaf2d0cad194fca56dde480a1448ecb2966 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/bin/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/.config/alacritty" "$HOME/.config/alacritty"
ln -sf "$PWD/.config/nvim" "$HOME/.config/nvim"
ln -sf "$PWD/.config/tmux" "$HOME/.config/tmux"
ln -sf "$PWD/.config/oh-my-posh" "$HOME/.config/oh-my-posh"
ln -sf "$PWD/.config/powershell" "$HOME/.config/powershell"
mkdir -p "$HOME/.local"
ln -sf "$PWD/snippets" "$HOME/.local/snippets"
ln -sf "$PWD/scripts" "$HOME/.local/scripts"
|