Just another vim config to be shared among my machines.
I manage everything with vim-pathogen adding it (and all other plugins) as git subtrees
Note that I installed solarized colors for xterm as recommended in vim-colors-solarized readme.
$ git clone https://github.com/bonext/vim-dotfiles ~/.vim
$ cd ~/.vim
$ git subtree add --prefix bundle/<plugin name> <plugin.git> master --squash
$ cd ~/.vim
$ git subtree pull --prefix bundle/<plugin name> <plugin.git> master --squash
I couldn't find any info on that, except this post with no references, but this seems to work:
$ git rm bundle/<plugin name>
$ git commit -m "Removed <plugin name>"