Skip to content

Instantly share code, notes, and snippets.

@mattjj
Last active October 10, 2015 13:48
Show Gist options
  • Save mattjj/3699521 to your computer and use it in GitHub Desktop.
Save mattjj/3699521 to your computer and use it in GitHub Desktop.
my setup script
#!/bin/bash -ev
hash git 2>&- || { echo >&2 "You must install git first."; exit 1; }
cd
git clone https://github.com/mattjj/dotfiles.git ./.dotfiles
bash .dotfiles/links.sh
cd
git clone https://github.com/mattjj/config-vim.git ./.vim
cd .vim
git submodule update --init --recursive
cd
ln -s .vim/vimrc .vimrc
mkdir -p .config
git clone https://github.com/mattjj/config-fish.git .config/fish
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment