Ben Fritz, Wed 2011-04-20 @ 17:26:49-0700:
> Not having used Pathogen, I don't know how to work installation using
> it.

Pathogen creates a new directory "bundle/" underneath your .vim/
directory. You then place the entire directory structure for a plugin in
a subdirectory of bundle. For example:

    .vim/
        bundle/
            pluginFoo/
                plugin/
                autoload/
                syntax/
                doc/
            pluginBar/
                plugin/
                autoload/
                doc/

The point is to prevent files from multiple plugins from being mixed
together in the standard directory structure. This makes them much
easier to upgrade or remove in the future.

Other than putting plugins into the bundle/ directory, you have to add
one line to your .vimrc so the bundles get loaded at startup. That's all
there is to it.

-- 
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

Reply via email to