tweaks for fzf and fzf.vim

This commit is contained in:
Chuck Hawley
2017-10-24 15:29:31 -04:00
parent 82e32714e3
commit 37eb4f8cd0

6
.vimrc
View File

@@ -51,6 +51,11 @@ nnoremap <Leader>q :bd <enter>
" bring up the copy buffer
noremap <Leader>x "+
" With ripgrep and FZF
" <leader> p to open files
map <Leader>p :Files<CR>
" search buffers
nmap ; :Buffers<CR>
" Plugins
@@ -77,6 +82,7 @@ Plug 'godlygeek/tabular'
""" Command Line Fuzzy Finder - https://github.com/junegunn/fzf
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
Plug 'junegunn/fzf.vim'
call plug#end()