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.

14 lines
273 B

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