The aptly named.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
319 B

12 years ago
12 years ago
12 years ago
12 years ago
  1. #!/bin/bash
  2. dir=~/dotfiles
  3. files="vimrc tmux.conf zshrc conkyrc"
  4. cd $dir
  5. for file in $files; do
  6. ln -s $dir/$file ~/.$file
  7. done
  8. chmod +x dwmstart
  9. ln -s $dir/dwmstart ~/dwmstart
  10. if [ ! -d ~/.vim/bundle/vundle ]; then
  11. git clone https://github.com/gmarik/vundle.git ~/.vim/bundle/vundle
  12. vim +BundleInstall +qall
  13. fi