diff --git a/vim/settings/easymotion.vim b/vim/settings/easymotion.vim index 5d2fb3b..a7d4821 100644 --- a/vim/settings/easymotion.vim +++ b/vim/settings/easymotion.vim @@ -1,17 +1,8 @@ -" This remaps easymotion to show us only the left -" hand home row keys as navigation options which -" may mean more typing to get to a particular spot -" but it'll all be isolated to one area of the keyboard -call EasyMotion#InitOptions({ -\ 'leader_key' : '' -\ , 'keys' : 'fjdksewoavn' -\ , 'do_shade' : 1 -\ , 'do_mapping' : 1 -\ , 'grouping' : 1 -\ -\ , 'hl_group_target' : 'Type' -\ , 'hl_group_shade' : 'Comment' -\ }) - +" These keys are easier to type than the default set +" We exclude semicolon because it's hard to read and +" i and l are too easy to mistake for each other slowing +" down recognition. The home keys and the immediate keys +" accessible by middle fingers are available +let g:EasyMotion_keys='asdfjkoweriop' nmap , ,,w nmap , ,,b diff --git a/vim/vundles/search.vundle b/vim/vundles/search.vundle index d9a479c..079b3ee 100644 --- a/vim/vundles/search.vundle +++ b/vim/vundles/search.vundle @@ -3,4 +3,4 @@ Bundle "rking/ag.vim" Bundle "vim-scripts/IndexedSearch" Bundle "nelstrom/vim-visual-star-search" Bundle "skwp/greplace.vim" -Bundle "skwp/vim-easymotion" +Bundle "Lokaltog/vim-easymotion"