/dotfiles

Primary LanguageVim script

dotfiles repo administered using dotdrop

Steps to install

  1. create a place to put your dotfiles
  2. initialise the directory as a git repository
  3. install dotdrop as git submodule
  4. install dotdrop requirements
  5. 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
  1. add dotfiles to dotdrop config
  2. add all files to repository
$ ./dotdrop.sh import ~/.vimrc ~/.tmux.conf ~/.tmux.zenburn.conf ~/.vim/
$ git add .
$ git commit -m "initial commit"
  1. Create a new repository on github
  2. synchronise local reporitory with github
  3. push everything to the new repository
$ remote add origin https://github.com/anscarlett/dotfiles.git
$ git push origin master