Mercurial > dotfiles
comparison 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 |
comparison
equal
deleted
inserted
replaced
477:6f788c83b7f6 | 478:e79244688396 |
---|---|
311 " Make fzf remember stuff. | 311 " Make fzf remember stuff. |
312 let g:fzf_history_dir = ludo#localpath('fzf-history') | 312 let g:fzf_history_dir = ludo#localpath('fzf-history') |
313 | 313 |
314 " Use fd for listing files if it's available on the system. | 314 " Use fd for listing files if it's available on the system. |
315 if executable('fd') | 315 if executable('fd') |
316 let $FZF_DEFAULT_COMMAND = 'fd --type f' | 316 let $FZF_DEFAULT_COMMAND = 'fd --type f --hidden' |
317 endif | 317 endif |
318 | 318 |
319 " }}} | 319 " }}} |
320 | 320 |
321 " Gutentags {{{ | 321 " Gutentags {{{ |