Skip to content

Commit

Permalink
added install script
Browse files Browse the repository at this point in the history
  • Loading branch information
nicknisi committed May 4, 2012
1 parent 87cdc88 commit 72e47a7
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
13 changes: 13 additions & 0 deletions README.md
Expand Up @@ -15,6 +15,12 @@ These are my dotfiles, which contain my custom system configuration preferences.

The organization of this project is similar to [Zach Holman's ](http://github.com/holman/dotfiles) setup.

### Automatic Installation

wget

### Manual Installation

#### Clone

First, clone the repository to your home directory and name it ".dotfiles"
Expand All @@ -24,6 +30,13 @@ First, clone the repository to your home directory and name it ".dotfiles"
Then cd into that directory

cd ~/.dotfiles

#### Init Submodules

The vim configuration relies on a couple of vim plugins, which are loaded in as git submodules.

git submodule init
git submodule update

#### Backup

Expand Down
17 changes: 17 additions & 0 deletions install.sh
@@ -0,0 +1,17 @@
#!/bin/sh

# clone the repository
git clone git@github.com:nicknisi/dotfiles.git ~/.dotfiles

# cd into directory
cd ~/.dotfiles

# initialize submodules
git submodule init
git submodule update

# backup existing configuration
rake backup

# run the install
rake install

0 comments on commit 72e47a7

Please sign in to comment.