/.vim

Primary LanguageVim Script

vim-dotfiles

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.

Installation

$ git clone https://github.com/bonext/vim-dotfiles ~/.vim

Installing a new plugin

$ cd ~/.vim
$ git subtree add --prefix bundle/<plugin name> <plugin.git> master --squash

Updating a plugin

$ cd ~/.vim
$ git subtree pull --prefix bundle/<plugin name> <plugin.git> master --squash

Removing a plugin

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>"

Included plugins

Considered plugins

More info about git subtrees