LunarVim/plug-config/easymotion.vim

12 lines
283 B
VimL
Raw Normal View History

2020-04-28 19:13:46 +02:00
let g:EasyMotion_do_mapping = 0 " Disable default mappings
" Turn on case-insensitive feature
let g:EasyMotion_smartcase = 1
" JK motions: Line motions
map <Leader>j <Plug>(easymotion-j)
map <Leader>k <Plug>(easymotion-k)
2020-04-29 05:34:21 +02:00
nmap s <Plug>(easymotion-s2)
nmap t <Plug>(easymotion-t2)