This configuration is mainly used from a brew-installed command line vim, but it should work with any other vim distributions.
To get it running on your machine, you first need to clone this repository:
git clone https://github.com/caiofilipini/dotvim.git ~/.vimThen create a symbolic link to .vim/vimrc, so it becomes your local configuration:
ln -s ~/.vim/vimrc ~/.vimrcI use Vundle to manage the plugins, so next step is getting it installed:
git clone https://github.com/gmarik/Vundle.vim.git ~/.vim/bundle/Vundle.vimNow, to install the plugins on your machine, you can run the following command (NOTE: because the plugins are not yet installed, you might see some errors on the command line; just press ENTER to ignore them and install the plugins):
vim +PluginInstall +qall You should be all set. Enjoy!