Mercurial > dotfiles
changeset 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 | 6f788c83b7f6 |
children | 91652f4b9752 |
files | vim/vimrc |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
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 " }}}