diff --git a/vimrc b/vimrc index b5ef6598..b3c50569 100644 --- a/vimrc +++ b/vimrc @@ -378,3 +378,19 @@ nnoremap dg :diffget " alias W to write the file instead of :w nnoremap W :w + +" alias yw to yank the entire word even if the +" cursor is inside the word +nnoremap yw yaw + + + call EasyMotion#InitOptions({ + \ 'leader_key' : '' + \ , 'keys' : 'abcdefghijklmnopqrstuvwxyz' + \ , 'do_shade' : 1 + \ , 'do_mapping' : 1 + \ , 'grouping' : 1 + \ + \ , 'hl_group_target' : 'EasyMotionTarget' + \ , 'hl_group_shade' : 'EasyMotionShade' + \ })