Added easy motion

This commit is contained in:
madmaurice 2015-10-28 20:18:24 +01:00
parent f38693db29
commit 27c6a8db00

View file

@ -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 <silent> <leader>p :set invpaste paste?<cr>
nnoremap <leader>a :Tabularize /
vnoremap <leader>a :'<,'>Tabularize /
nnoremap <leader>w <C-w>v<C-w>l
nmap <leader>s /\V
" Don't need a help
inoremap <F1> <nop>
@ -111,3 +110,10 @@ let g:SuperTabNoCompleteAfter = ['^',',','\s']
"NERDTree tabs
nmap <silent> <leader>e :NERDTreeToggle<CR>
"EasyMotion
map / <Plug>(easymotion-sn)
omap / <Plug>(easymotion-tn)
map n <Plug>(easymotion-next)
map N <Plug>(easymotion-prev)