From 27c6a8db000e195cadff712f779da2bef9d8743f Mon Sep 17 00:00:00 2001 From: Valentin Gehrke Date: Wed, 28 Oct 2015 20:18:24 +0100 Subject: [PATCH] Added easy motion --- vim/.vimrc | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/vim/.vimrc b/vim/.vimrc index 5fafa24..9d774ce 100644 --- a/vim/.vimrc +++ b/vim/.vimrc @@ -17,7 +17,7 @@ Plugin 'godlygeek/tabular' "Tabularize Plugin 'MarcWeber/vim-addon-mw-utils' " Dependency for snipmate Plugin 'tomtom/tlib_vim' "Dependency for snipmate Plugin 'garbas/vim-snipmate' "Snippets - +Plugin 'easymotion/vim-easymotion' "Easy Motion " End init vundle call vundle#end() @@ -70,7 +70,6 @@ nnoremap p :set invpaste paste? nnoremap a :Tabularize / vnoremap a :'<,'>Tabularize / nnoremap w vl -nmap s /\V " Don't need a help inoremap @@ -111,3 +110,10 @@ let g:SuperTabNoCompleteAfter = ['^',',','\s'] "NERDTree tabs nmap e :NERDTreeToggle + +"EasyMotion +map / (easymotion-sn) +omap / (easymotion-tn) + +map n (easymotion-next) +map N (easymotion-prev)