"#### Avoid the ESCAPE Key ############################### " Press Ctrl-Space instead of ESC (because Shift-Space only work in GUI). " See http://vim.wikia.com/wiki/Avoid_the_escape_key "- nnoremap --> cancel any prefix keys nnoremap "- vnoremap --> cancel any selection (gV is required to prevent automatic reselection) vnoremap gV "- onoremap --> cancel any operator pending commands (like y) onoremap "- inoremap --> exit insert mode and `^ restore cursor position (cursor does not move left) inoremap `^ "#### GVIM-only settings ############################################# " guifont list of font names to be used in the GUI set gfn=Monospace\ 9 " columns width of the display set co=150 " lines number of lines in the display set lines=43