diff options
Diffstat (limited to 'plug-config/easymotion.vim')
-rw-r--r-- | plug-config/easymotion.vim | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/plug-config/easymotion.vim b/plug-config/easymotion.vim deleted file mode 100644 index dc35ca2a..00000000 --- a/plug-config/easymotion.vim +++ /dev/null @@ -1,42 +0,0 @@ -" let g:EasyMotion_do_mapping = 0 " Disable default mappings -" " Turn on case-insensitive feature -let g:EasyMotion_smartcase = 1 -let g:EasyMotion_verbose = 0 -let g:EasyMotion_do_shade = 0 - -" " JK motions: Line motions -" map <Leader>j <Plug>(easymotion-j) -" map <Leader>k <Plug>(easymotion-k) - -" nmap s <Plug>(easymotion-s2) -" nmap t <Plug>(easymotion-t2) - -" TODO add separate section for vscode - -" map <Leader>f <Plug>(easymotion-bd-f) -" nmap <Leader>f <Plug>(easymotion-overwin-f) - -" s{char}{char} to move to {char}{char} -nmap <silent> s <Plug>(easymotion-s2) -nmap <silent> S <Plug>(easymotion-overwin-f2) -" map n <Plug>(easymotion-next) -" map N <Plug>(easymotion-prev) -" nmap S <Plug>(easymotion-overwin-t) - -" Move to line -" map <Leader>l <Plug>(easymotion-bd-jk) -" nmap <Leader>l <Plug>(easymotion-overwin-line) - -" " Move to word -" map <Leader>w <Plug>(easymotion-bd-w) -" nmap <Leader>w <Plug>(easymotion-overwin-w) - -" hi link EasyMotionTarget ErrorMsg -" hi link EasyMotionShade Comment -let g:EasyMotion_prompt = '🔎 ' - -" hi link EasyMotionMoveHL Search -" hi link EasyMotionIncSearch Search - -"Lower case finds upper & lower case but upper case only finds upper case -" let g:EasyMotion_smartcase = 1 |