Now on vim-plug.
curl https://raw.githubusercontent.com/Panya/dotvim/master/bootstrap.sh -o - | sh
Here's some tips if you've never used VIM before:
- Type 
vimtutorinto a shell to go through a brief interactive tutorial inside VIM. - Read the slides at VIM: Walking Without Crutches.
 
- VIM has two modes:
- insert mode- stuff you type is added to the buffer
 - normal mode- keys you hit are interpretted as commands
 
 - To enter insert mode, hit 
i - To exit insert mode, hit 
<ESC> 
- Use 
:qto exit vim ,Wto remove trail whitespacesgccto comment/uncomment,tto CtrlP (like TextMate Command-T)- Keyboard cheat sheet.