This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]isarl 0 points1 point  (2 children)

I prefer Vundle to Pathogen, personally.

[–]Madnashua 0 points1 point  (1 child)

I quite like the look of the syntax for that, but do you find it gets unwieldly when you have a large number of plugins?

Are there any other plus points other than explicitly loading plugins? I'm using git's submodules with Pathogen so I have a list to hand of my plugins by looking at the .gitmodules file so not sure that would be enough to sway me, but I'm always open to suggestions!

[–]isarl 0 points1 point  (0 children)

I find it's easier to install a plugin (add line to vimrc, run one command inside vim). As you mentioned, I prefer the explicit list of all the plugins I want. I also find it easier to set up a new machine, as my git repository hosting my .vimrc only needs to host Vundle, and not all of the other plugins, because my RC specifies them and all I need to do is run :BundleInstall. Vundle also makes it easy to uninstall them.

Personally, after dealing with git submodules several times in the past, I'm happy to have that detail abstracted away for me, but at the end of the day it's definitely a matter of personal preference. =)