easymotion.vim 498 B

12345678910111213141516
  1. let g:EasyMotion_do_mapping = 0 " Disable default mappings
  2. " Jump to anywhere you want with minimal keystrokes, with just one key binding.
  3. " `s{char}{label}`
  4. nmap s <Plug>(easymotion-overwin-f)
  5. " or
  6. " `s{char}{char}{label}`
  7. " Need one more keystroke, but on average, it may be more comfortable.
  8. nmap s <Plug>(easymotion-overwin-f2)
  9. " Turn on case-insensitive feature
  10. let g:EasyMotion_smartcase = 1
  11. " JK motions: Line motions
  12. map <Leader>j <Plug>(easymotion-j)
  13. map <Leader>k <Plug>(easymotion-k)