dotar/vim/settings/easymotion.vim

18 lines
503 B
VimL
Raw Normal View History

" 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' : '<Leader><Leader>'
\ , 'keys' : 'fjdksewoavn'
\ , 'do_shade' : 1
\ , 'do_mapping' : 1
\ , 'grouping' : 1
\
\ , 'hl_group_target' : 'Type'
2014-03-08 04:02:50 +08:00
\ , 'hl_group_shade' : 'Comment'
\ })
nmap ,<ESC> ,,w
nmap ,<S-ESC> ,,b