-
Notifications
You must be signed in to change notification settings - Fork 2.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Keep bundles in separate file and manage with commands #56
Comments
Nice! Never though about appending bundles automatically on install... |
This crossed my mind too when first migrating my existing Pathogen bundles that I used to manage with a list in a Rakefile, because I am actually managing Vundle with a separate file. I just do this at bottom of my
Then |
I also use a separated Also we can keep the behavior of |
I can work on this later, please suggest file name for the standard Vundle configuration file name. Personally I suggest |
~/.vim/vundle.vim sounds great to me. Thanks! -Mat On Oct 23, 2011, at 4:09 AM, Rainux Luo
|
VAM implements dependencies (by allowing users to add addon-info.json files which can reference other repositories). bitbucket.org/vimcommunity/vim-pi is the best place to discuss future about such ideas. |
This is less of an "issue" and more of an idea. I noticed on autoload/vundle/installer.vim:48 you have a TODO about not reloading vimrc. And my coworker (trotter on github) had an interesting idea about putting the
Bundle
lines in their own file such that you could then have commands to manage them. For example you could run:BundleInstall tpope/vim-fugitive
from within vim which would check out the bundle and append it to your "bundlerc" so it would get loaded next time.Seems like it might kill two birds with one stone if you moved the actual bundle list into it's own file and loaded it during
vundle#rc
.Thoughts?
The text was updated successfully, but these errors were encountered: