easymotion.vim 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. " let g:EasyMotion_do_mapping = 0 " Disable default mappings
  2. " " Turn on case-insensitive feature
  3. let g:EasyMotion_smartcase = 1
  4. let g:EasyMotion_verbose = 0
  5. " " JK motions: Line motions
  6. " map <Leader>j <Plug>(easymotion-j)
  7. " map <Leader>k <Plug>(easymotion-k)
  8. " nmap s <Plug>(easymotion-s2)
  9. " nmap t <Plug>(easymotion-t2)
  10. " TODO add separate section for vscode
  11. " map <Leader>f <Plug>(easymotion-bd-f)
  12. " nmap <Leader>f <Plug>(easymotion-overwin-f)
  13. " s{char}{char} to move to {char}{char}
  14. nmap <silent> s <Plug>(easymotion-s2)
  15. nmap <silent> S <Plug>(easymotion-overwin-f2)
  16. " map n <Plug>(easymotion-next)
  17. " map N <Plug>(easymotion-prev)
  18. " nmap S <Plug>(easymotion-overwin-t)
  19. " Move to line
  20. " map <Leader>l <Plug>(easymotion-bd-jk)
  21. " nmap <Leader>l <Plug>(easymotion-overwin-line)
  22. " " Move to word
  23. " map <Leader>w <Plug>(easymotion-bd-w)
  24. " nmap <Leader>w <Plug>(easymotion-overwin-w)
  25. " hi link EasyMotionTarget ErrorMsg
  26. " hi link EasyMotionShade Comment
  27. let g:EasyMotion_prompt = '🔎 '
  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