Change maps from CtrlP to FZF

This commit is contained in:
ViViDboarder 2017-10-25 12:59:05 -07:00
parent 6e2ff67d48
commit e57861168f
2 changed files with 25 additions and 2 deletions

View File

@ -24,7 +24,7 @@ call s:smart_source_rc('plugins/gitgutter')
" }} Git
" Searching {{
call s:smart_source_rc('plugins/ctrlp')
" call s:smart_source_rc('plugins/ctrlp')
call s:smart_source_rc('plugins/fzf')
" call s:smart_source_rc('plugins/incsearch')
call s:smart_source_rc('plugins/vim-grepper')

View File

@ -1,3 +1,26 @@
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': 'yes \| ./install' }
Plug 'junegunn/fzf.vim'
let g:fzf_command_prefix = 'Fzf'
let g:fzf_command_prefix = 'FZF'
" Jump to existing window if possible
let g:fzf_buffers_jump = 1
" Override key commands
let g:fzf_action = {
\ 'ctrl-t': 'tab split',
\ 'ctrl-s': 'split',
\ 'ctrl-v': 'vsplit' }
" Ctrl-T to launch standard file search
nnoremap <C-t> :FZF<CR>
" Leader Commands
" Find buffers
nnoremap <leader>b :FZFBuffers<CR>
" Find text in files
nnoremap <leader>f :FZFAg<CR>
" Find tags
nnoremap <leader>r :FZFTags<CR>
" Find buffer tags
nnoremap <leader>t :FZFBTags<CR>
" Find git history for buffer
nnoremap <leader>g :FZFBCommits<CR>