aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.env5
-rw-r--r--.vim/plugin/fzf.vim5
2 files changed, 10 insertions, 0 deletions
diff --git a/.env b/.env
index 8e39ca9..a404b39 100644
--- a/.env
+++ b/.env
@@ -5,3 +5,8 @@ if [[ $TERM =~ 'st' ]]; then
TERMINAL=st
fi
export TERMINAL=$TERMINAL
+
+export FZF_DEFAULT_COMMAND='find . -type f'
+if [ -f /usr/bin/fd ];then
+ export FZF_DEFAULT_COMMAND='fd --type f --hidden --follow --exclude .git'
+fi
diff --git a/.vim/plugin/fzf.vim b/.vim/plugin/fzf.vim
index 04aaeda..43522f7 100644
--- a/.vim/plugin/fzf.vim
+++ b/.vim/plugin/fzf.vim
@@ -1,5 +1,10 @@
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>fbf :FzfBuffers<CR>