Added easy motion
This commit is contained in:
parent
f38693db29
commit
27c6a8db00
1 changed files with 8 additions and 2 deletions
10
vim/.vimrc
10
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 <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)
|
||||
|
|
Loading…
Reference in a new issue