All my dot files and such
- Download setup script:
cd $HOME curl https://raw.githubusercontent.com/mattcan/dotfiles/master/.setup.sh --output dotfiles.sh
- Set execute permission:
chmod +x dotfiles.sh
- Run script:
./dotfiles.sh
- thispc - Machine specific private commands or variables. Good place to put private environment variables.
- os - operating system specific setup and configuration
- share - configurations and plugins that are for software used on any os, anything here gets linked to
~/
- vendor - third party stuff that isn't a vim/tmux plugin
This is the pathogen system:
- Start in the root of this project
- Do this:
git submodule add https://github.com/the/plugin share/vim/bundle/pluginName
- cloned without recursive or pulling in new submodule
git submodule update --init
- updating to latest commit for all submodules
git submodule update --recursive --remote