easymotion.vim 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. " let g:EasyMotion_do_mapping = 0 " Disable default mappings
  2. " " Turn on case-insensitive feature
  3. " let g:EasyMotion_smartcase = 1
  4. " " JK motions: Line motions
  5. " map <Leader>j <Plug>(easymotion-j)
  6. " map <Leader>k <Plug>(easymotion-k)
  7. " nmap s <Plug>(easymotion-s2)
  8. " nmap t <Plug>(easymotion-t2)
  9. " TODO add separate section for vscode
  10. " map <Leader>f <Plug>(easymotion-bd-f)
  11. " nmap <Leader>f <Plug>(easymotion-overwin-f)
  12. " s{char}{char} to move to {char}{char}
  13. nmap s <Plug>(easymotion-s2)
  14. " map n <Plug>(easymotion-next)
  15. " map N <Plug>(easymotion-prev)
  16. " nmap s <Plug>(easymotion-overwin-f2)
  17. " nmap S <Plug>(easymotion-overwin-t)
  18. " Move to line
  19. " map <Leader>l <Plug>(easymotion-bd-jk)
  20. " nmap <Leader>l <Plug>(easymotion-overwin-line)
  21. " " Move to word
  22. " map <Leader>w <Plug>(easymotion-bd-w)
  23. " nmap <Leader>w <Plug>(easymotion-overwin-w)
  24. " hi link EasyMotionTarget ErrorMsg
  25. " hi link EasyMotionShade Comment
  26. " hi link EasyMotionTarget2First MatchParen
  27. " hi link EasyMotionTarget2Second MatchParen
  28. " hi link EasyMotionMoveHL Search
  29. " hi link EasyMotionIncSearch Search
  30. "Lower case finds upper & lower case but upper case only finds upper case
  31. " let g:EasyMotion_smartcase = 1