Steps to install
- create a place to put your dotfiles
- initialise the directory as a git repository
- install dotdrop as git submodule
- install dotdrop requirements
- initialise dotdrop
$ mkdir dotfiles; cd dotfiles
$ git init
$ git submodule add https://github.com/deadc0de6/dotdrop.git
$ sudo pip3 install -r dotdrop/requirements.txt
$ ./dotdrop/bootstrap.sh
- add dotfiles to dotdrop config
- add all files to repository
$ ./dotdrop.sh import ~/.vimrc ~/.tmux.conf ~/.tmux.zenburn.conf ~/.vim/
$ git add .
$ git commit -m "initial commit"
- Create a new repository on github
- synchronise local reporitory with github
- push everything to the new repository
$ remote add origin https://github.com/anscarlett/dotfiles.git
$ git push origin master