Skip to content

Latest commit

 

History

History
26 lines (22 loc) · 758 Bytes

README.md

File metadata and controls

26 lines (22 loc) · 758 Bytes

Intro

This is a configuration aimed at maximising productivity with C++.

Installation

Instalation is easy, just paste the following commands in the console:

cd ~
mv .vimrc .vimrc.bak
mv .vim .vim.bak
git clone https://github.com/thunderboltsid/vim-configuration.git vim
git clone  https://github.com/gmarik/Vundle.vim vim/bundle/Vundle.vim
ln -s ./vim .vim
ln -s ./vim/vimrc .vimrc

Now start vim and issue the :PluginInstall command. This will install all the plugin via Vundle. Some plugins require special attention:

YouCompleteMe

To build YouCompleteMe, you need to do the following:

cd ~/vim/bundle/YouCompleteMe
./install.sh

Enjoy!