Seems like fzf + grepper is the best combination

Revert "Revert "try out fzf" (sorry Silox)"

This reverts commit 9eaa594844.
This commit is contained in:
Felix Van der Jeugt 2017-04-12 10:17:20 +02:00
parent 7af1479d25
commit ee2332f3b4
No known key found for this signature in database
GPG Key ID: 58B209295023754D
1 changed files with 6 additions and 5 deletions

View File

@ -63,7 +63,7 @@ Plug 'bling/vim-airline'
Plug 'junegunn/vim-peekaboo'
" Files
Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' }
Plug 'ctrlpvim/ctrlp.vim'
Plug 'junegunn/fzf.vim'
Plug 'mhinz/vim-grepper', { 'on': 'Grepper' }
" Movement
Plug 'easymotion/vim-easymotion'
@ -85,10 +85,6 @@ call plug#end()
" Plugin configuration
" --------------------
let g:ctrlp_map='<Leader>l'
let g:ctrlp_user_command=['.git/', 'git --git-dir=%s/.git ls-files . -co --exclude-standard']
nnoremap <Leader>s :CtrlPTag<CR>
let g:airline_powerline_fonts=1
nnoremap <Leader>t :NERDTreeToggle<CR><CR>
@ -168,6 +164,11 @@ map * <Plug>(incsearch-nohl-*)
map # <Plug>(incsearch-nohl-#)
map g* <Plug>(incsearch-nohl-g*)
map g# <Plug>(incsearch-nohl-g#)
" path for fzf install
set rtp+=/usr/share/vim/vimfiles/
nnoremap <Leader>l :Files<CR>
nnoremap <Leader>s :Tags<CR>
" Plugged }}}
" vim: foldmethod=marker