Skip to content

Instantly share code, notes, and snippets.

@jeremyboggs
Created September 2, 2011 19:46
Show Gist options
  • Save jeremyboggs/1189689 to your computer and use it in GitHub Desktop.
Save jeremyboggs/1189689 to your computer and use it in GitHub Desktop.
#! /usr/bin/env bash
DOTFILES = ~/.dotfiles
mkdir ~/.dotfiles.old
for i in ~/.vim ~/.vimrc ~/.gvimrc ~/vimfiles ~/.bash_profile ~/.gitignore ~/.gitconfig; do
[ -e $i ] && mv $i ~/.dotfiles.old
done
git clone https://github.org/clioweb/dotfiles.git $DOTFILES
cd $DOTFILES
rake install
# vim: set sw=4:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment