How to learn vim on a high level? [closed]

I know that vim (like emacs) is very powerful editor for programmers, as long as you know how to use it, its shortcuts, and so on. What steps can I take and what tutorials can I read to become an advanced vim user?


Step 0: learn to touch type. Seriously - if your fingers don't know where the keys are then vim is going to be a pain. And even if you reject vim, touch typing will improve your programming (ask Steve Yegge) by making the mind to monitor link friction free. There is a lot of software that can help you improve your typing.

Step 1: Use the keyboard preferences to swap Caps Lock and Escape - seriously, how often do you use Caps Lock? Using vim you will be using Escape all the time, and having it available on the home row makes a huge difference. With the standard Ubuntu desktop, go through the menus: System -> Preferences -> Keyboard -> Layouts tab. Then hit the "Layout Options" button, click on the triangle next to "Caps Lock key behaviour" and select "Swap ESC and CapsLock". (Note how to do this has changed - see this for how to do this in 14.04.

Step 2: use vimtutor to get you started. It is in gvim (under the help menu I think) or you can just type 'vimtutor' at the command line. It will take 30-45 minutes of your time and then your fingers will know the basics of vi/vim and you should be able to edit files without wanting to hurl your keyboard out of the window.

Step 3: use vim everywhere. See this question from StackOverflow for tips and links for using vim and vi key bindings at the command line, from your web browser, for composing emails, in your IDE ... You need to use vim to embed the key bindings in your muscle memory.

Step 4: learn more about vim. You will only have scratched the surface with vimtutor. You can

  • watch screencasts at vimcasts or those by Derek Wyatt;
  • watch this video or read this article (both about the "Seven habits of effective text editing";
  • read about some of the many tips and tricks on StackOverflow;
  • browse vimtips.

Learn a litle often would be my advice - there is so much out there that sticking to bite-size chunks will be the best way to make the knowledge stick.

Step 5: Profit :)


"vimtutor" form package "vim" is probably the best place to start.


Two things:

  1. Learn touch-typing. There's really no other way. Then bind ESC to ";;" so you never have to leave your home row: inoremap ;; <esc>

  2. Search github for other people's .vimrcs

And a third: VimCasts