aboutsummaryrefslogtreecommitdiff
path: root/install.sh
blob: b84959de7e3c05972d8e6720beccdd8c8b8f9062 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/bash

files="vimrc zshenv tmux";
dir=~/Dotfiles;

for file in $files; do
    echo "Creating symlink for " + $file;
    ln -s $dir/$file ~/.$file;
done