Skip to content

Instantly share code, notes, and snippets.

@leosmaia21
Last active July 28, 2024 17:44
Show Gist options
  • Save leosmaia21/330dbb421010123fdd07e2b6a6fac96c to your computer and use it in GitHub Desktop.
Save leosmaia21/330dbb421010123fdd07e2b6a6fac96c to your computer and use it in GitHub Desktop.
[ -f ~/.fzf.bash ] && source ~/.fzf.bash
_fzf_compgen_path() {
command find "$1" -L -mindepth 1 -type f
}
_fzf_compgen_dir() {
command find "$1" -L -maxdepth 1 -mindepth 1 -type d
}
export FZF_DEFAULT_OPTS='--bind tab:down,shift-tab:up'
export FZF_COMPLETION_TRIGGER=""
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment