export FZF_DEFAULT_COMMAND='fd --type f --hidden --exclude .git'
Use fd instead of find for fzf file search (much faster)
By default, fzf uses `find` which is slow on large directories. fd (install with `sudo apt install fd-find`) is 5–10x faster, respects .gitignore, and excludes hidden files by default. --hidden includes dotfiles, --exclude .git skips the git directory.
Looking for more? Search all 7,657 commands — works offline, in English or Spanish, and fixes typos.