Using Vundle for Vim Plugin Management

Using Vundle for Vim Plugin Management

Hold on Cowboy

This blog post is pretty old. Be careful with the information you find in here. It's likely dead, dying, or wildly inaccurate.

Vim is the end all, be all of text editors. I don’t care how great Sublime is, or the like. Vim has been around for a long time and for very good reason. You can edit text supremely fast. The plugins just keep getting better.

Vim Plugins

So of course I use plugins. I might try new ones here and there but I have a number of tried and true plugins that I always install. Some that must be noted because they must be noted.

  • NERDTree A file explorer that has more than just that.
  • Fugative A git plugin that will turn you into a git spouting fool
  • Syntastic Code syntax highlighting that will give you goose bumps
  • Tabular Makes lining up vars by their = a breeze

Pathogen

This was a great way to install bundles, you just drop them into the folder and you were rolling. You did need to roll your own gitsubmodule setup if you wanted to propagate your setup to another machine. That works, but man, submodules are a pain in the butt.

Vundle

Vundle goes a step further and lets you manage your plugins right in your .vimrc file. After you’ve set them up in your .vimrc file, then just run the command :BundleInstall. Vundle will go through your different plugins, go get them and install them. It Just Works.

Resources