vimfiles
Clone this repo from your home path.
cd ~
git clone git@github.com:s0ber/vimfiles.git .vim
cd .vim
git remote add s0ber git@github.com:s0ber/vimfiles.git
Link your .vimrc to .vim/.vimrc.
cd ~
ln -s ./.vim/.vimrc .vimrc
Install NeoBundle.
curl https://raw.githubusercontent.com/Shougo/neobundle.vim/master/bin/install.sh | sh
Install Ag (a.k.a SilverSearch).
sudo apt-get install silversearcher-ag
Then compile c extension for ctrlp-cmatcher:
sudo apt-get install python-dev
cd ~/.vim/bundle/ctrlp-cmatcher/
./install.sh
Link COC settings:
ln -sf ~/.vim/coc-settings.json ~/.config/nvim/coc-settings.json
To make everything work, install all packages (this will be suggested when you first time opening vim).
Updating with latest version
cd ~/.vim
git pull s0ber master