" Auto-toggle paste mode let &t_SI .= "\[?2004h" let &t_EI .= "\[?2004l" function! XTermPasteBegin() set pastetoggle=[201~ set paste return "" endfunction inoremap [200~ XTermPasteBegin() " Clear search highlighting noremap :let @/ = "" " Spellcheck nnoremap S :setlocal spell! spelllang=en_us " Easy motion to start/end of a line noremap H ^ noremap L $ " Toggle cursorline and relativelinenumber quickly noremap c :set cursorline! noremap n :set relativenumber! " Oops, forgot a semi-colon... noremap ; $a; " Search highlighted text in buffer vnoremap // y/\V=escape(@",'/\')