diff options
Diffstat (limited to '.vim/plugin/fzf.vim')
-rw-r--r-- | .vim/plugin/fzf.vim | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/.vim/plugin/fzf.vim b/.vim/plugin/fzf.vim deleted file mode 100644 index 7bf39aa..0000000 --- a/.vim/plugin/fzf.vim +++ /dev/null @@ -1,20 +0,0 @@ -let g:fzf_command_prefix = 'Fzf' - -command! -bang -nargs=* FzfRg - \ call fzf#vim#grep( - \ 'rg --hidden --column --line-number --no-heading --color=always --smart-case --glob !.git -- '.shellescape(<q-args>), 1, - \ fzf#vim#with_preview(), <bang>0) - -noremap <leader>ff :FzfFiles<CR> -noremap <leader>fgf :FzfGFiles<CR> -noremap <leader>fb :FzfBuffers<CR> -noremap <leader>fm :FzfHistory<CR> -noremap <leader>ft :FzfBTags<CR> -noremap <leader>fT :FzfTags<CR> -noremap <leader>fa :FzfAg<space> -noremap <leader>fr :FzfRg<space> -noremap <leader>fc :FzfCommands<CR> -noremap <leader>fgc :FzfBCommits<CR> -noremap <leader>fgC :FzfCommits<CR> -noremap <leader>fl :FzfBLines<CR> -noremap <leader>fL :FzfLines<CR> |