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
vimtutor
into 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
:q
to exit vim ,W
to remove trail whitespacesgcc
to comment/uncomment,t
to CtrlP (like TextMate Command-T)- Keyboard cheat sheet.