[[plugins]] repo = 'Lokaltog/vim-easymotion' on_map=['(easymotion-'] hook_add = ''' map (easymotion-prefix) let g:EasyMotion_do_mapping = 0 " Disable default mappings map l (easymotion-fl) map h (easymotion-Fl) map L (easymotion-tl) map H (easymotion-Tl) map f (easymotion-bd-fl) map t (easymotion-bd-tl) " Jump to anywhere you want with minimal keystrokes, with just one key binding. " `;{char}{char}{label}` " Need one more keystroke, but on average, it may be more comfortable. map ; (easymotion-bd-f2) nmap ; (easymotion-overwin-f2) " Turn on case insensitive feature let g:EasyMotion_smartcase = 1 " Word motions map w (easymotion-wl) map W (easymotion-Wl) map b (easymotion-bl) map B (easymotion-Bl) map e (easymotion-el) map E (easymotion-El) map ge (easymotion-gel) map gE (easymotion-gEl) " JK motions: Line motions let g:EasyMotion_startofline=0 map j (easymotion-j) map k (easymotion-k) '''