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 <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)