Get an awesomeized vim setup with minimal fuss!
- The first step you'll need to do is to upgrade to vim version 8. On a Mac (and linux systems with linuxbrew installed), this is as easy as using brew to install or update vim. For other systems, google is your friend here.
- Once you get vim 8 installed, you'll need to clone this repo from your root directory recursively to get the submodules.
git clone --recurse-submodules -j8 git@github.com:mikelane/.vim.git
- You might have to restart your terminal. But once you do, you'll have vim all set up with some great plugins and an excellent vimrc.
- Find the github clone of the plugin that you want to add. I recommend checking out https://vimawesome.com/ for plugins.
- Change into your
.vim
directory. On Mac/*nix:
cd ~/.vim
- Add the submodule
git submodule add https://github.com/<name>/<plugin-name> pack/plugins/start/<plugin-name>
- Change into your
.vim
directory. - Update the submodules:
git submodule update --remote --rebase