Excerpts from niva's message of Mon Jan 07 11:35:04 +0100 2013: > Is it possible to load only one plugin and without _vimrc ? github.com/MarcWeber/vim-addon-manager
let's you choose which plugins to activate easily. It also supports loading plugins at runtime as needed. grep its documentation for filetype which will tell you how to activate plugins if you edit a specific filetype only. The interesting question is how to tell vim which plugin to load. Env vars could be used: V_P='my-plugin' vim # start vim passing V_P env var set to my-plugin then read $V_P inside you .vimrc and load my-plugin this way. Of course there are more solutions. This is my (biased) recommendation. Marc Weber -- 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
