aboutsummaryrefslogtreecommitdiffhomepage
path: root/setup.sh
blob: d4d8cf12f4a01b9a44ee9954a88228fd4cc3b831 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

for name in .gitconfig .vim .vimrc .zshrc
do
    ln -s -f ~/dotfiles/$name ~/$name
done

[ -d ~/.config ] || mkdir ~/.config
for name in alacritty git starship.toml
do
    ln -s -f ~/dotfiles/.config/$name ~/.config/$name
done