dotfiles/install.sh

18 lines
319 B
Bash
Executable File

#!/bin/bash
dir=~/dotfiles
files="vimrc tmux.conf zshrc conkyrc"
cd $dir
for file in $files; do
ln -s $dir/$file ~/.$file
done
chmod +x dwmstart
ln -s $dir/dwmstart ~/dwmstart
if [ ! -d ~/.vim/bundle/vundle ]; then
git clone https://github.com/gmarik/vundle.git ~/.vim/bundle/vundle
vim +BundleInstall +qall
fi