"Convenience mappings"
inoremap jj <Esc>`^
inoremap JJ <Esc>`^
cnoremap w!! %!sudo tee > /dev/null %
"Reasonable line movement"
nnoremap j gj
nnoremap k gk
vnoremap j gj
vnoremap k gk
"Window movement mappings"
nnoremap <c-h> <c-w>h
nnoremap <c-l> <c-w>l
nnoremap <c-j> <c-w>j
nnoremap <c-k> <c-w>k
Watch your productivity soar with these. The first few make it easy to get out of insert mode, and w!! let's you save a file in case you forgot to sudo before hand.
The mapping of j and k to gj and gk respectively allow you to move over virtual lines as if they were real lines.
The last batch lets you move between windows like a real ninja.