Last active
July 8, 2016 21:03
-
-
Save bspaulding/387551e496b545df25fba23457860f64 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # fzf default command | |
| # prefer git ls-tree/ls-files, then ag, then find if needed | |
| # cat'ing ls-tree and ls-files because ls-tree doesn't know about | |
| # untracked files | |
| export FZF_DEFAULT_COMMAND=' | |
| ({ git ls-tree -r --name-only HEAD ; git ls-files . --exclude-standard --others } || | |
| ag -g "" --ignore node_modules || | |
| find . -path "*/\.*" -prune -o -type f -print -o -type l -print | | |
| sed s/^..//) 2> /dev/null' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment