summaryrefslogtreecommitdiffstatshomepage
path: root/fzf/.config/zsh/.zshrc.d/50-fzf.zsh
blob: c026139df8e4fc9549c8a0fe9f224138320a3567 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/zsh
# vim: ft=sh

_fzf_compgen_path() {
	fd --hidden --follow --exclude ".git" . "$1"
}

_fzf_compgen_dir() {
	fd --type d --hidden --follow --exclude ".git" . "$1"
}