aboutsummaryrefslogtreecommitdiff
path: root/.vim/after
diff options
context:
space:
mode:
Diffstat (limited to '.vim/after')
-rw-r--r--.vim/after/plugin/ctrlp.vim4
1 files changed, 3 insertions, 1 deletions
diff --git a/.vim/after/plugin/ctrlp.vim b/.vim/after/plugin/ctrlp.vim
index 9c16164..1b5268d 100644
--- a/.vim/after/plugin/ctrlp.vim
+++ b/.vim/after/plugin/ctrlp.vim
@@ -8,7 +8,9 @@ if get(g:, 'loaded_fzf_vim', 0) == 0
let g:ctrlp_user_command = 'find %s -type f'
if executable('fd')
- let g:ctrlp_user_command = 'fd --hidden --type f . %s'
+ let g:ctrlp_user_command = '
+ \ fd --hidden --type f . %s
+ \ --exclude .git'
endif
nnoremap <leader>fb :CtrlPBuffer<CR>