Mercurial > dotfiles
diff vim/vimrc @ 478:e79244688396
Set default fzf command to fd if it's available.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Wed, 05 Feb 2020 09:29:24 -0800 |
parents | 265442d4def8 |
children | 1a54ffbc3b15 |
line wrap: on
line diff
--- a/vim/vimrc Wed Feb 05 09:28:55 2020 -0800 +++ b/vim/vimrc Wed Feb 05 09:29:24 2020 -0800 @@ -313,7 +313,7 @@ " Use fd for listing files if it's available on the system. if executable('fd') - let $FZF_DEFAULT_COMMAND = 'fd --type f' + let $FZF_DEFAULT_COMMAND = 'fd --type f --hidden' endif " }}}