mirror of
https://github.com/ViViDboarder/vim-settings.git
synced 2024-11-16 21:16:27 +00:00
Change maps from CtrlP to FZF
This commit is contained in:
parent
6e2ff67d48
commit
e57861168f
@ -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')
|
||||
|
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user