Last active
July 28, 2024 17:44
-
-
Save leosmaia21/330dbb421010123fdd07e2b6a6fac96c 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
[ -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