diff --git a/vimrcs/plugins_config.vim b/vimrcs/plugins_config.vim index 86e65fdd..4893c3ad 100644 --- a/vimrcs/plugins_config.vim +++ b/vimrcs/plugins_config.vim @@ -74,6 +74,27 @@ let Grep_Skip_Dirs = 'RCS CVS SCCS .svn generated' set grepprg=/bin/grep\ -nH +""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" +" => EasyMotion +""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" + +let g:EasyMotion_do_mapping = 0 " Disable default mappings + +" Jump to anywhere you want with minimal keystrokes, with just one key binding. +" `s{char}{label}` +nmap s (easymotion-overwin-f) +" or +" `s{char}{char}{label}` +" Need one more keystroke, but on average, it may be more comfortable. +nmap s (easymotion-overwin-f2) + +" Turn on case-insensitive feature +let g:EasyMotion_smartcase = 1 + +" JK motions: Line motions +map j (easymotion-j) +map k (easymotion-k) + """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" " => Nerd Tree """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""