summaryrefslogtreecommitdiff
path: root/install.sh
blob: acc63956065240d1fdf0d511240323643f0cb2fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash

dir=~/dotfiles                    # dotfiles directory
olddir=~/dotfiles_old             # old dotfiles backup directory
files="bashrc vimrc vim zshrc oh-my-zsh"    # list of files/folders to symlink in homedir

mkdir -p $olddir
cd $dir
for file in $files; do
    echo $file
    mv ~/.$file ~/dotfiles_old/
    ln -s $dir/.$file ~
done