https://github.com/bag-man/dotfiles/blob/master/bashrc#L73
Lets you change directory with alt+c, although I have tweaked it so you always search from your root folder. Which isn't for everyone. Otherwise fzf alt+c doesn't let you go back up directories which gets frustrating.
bfs ~ -nohidden -type d -printf '~/%P\n'
export FZF_ALT_C_COMMAND="bfs -type d -nohidden"
It won't let you go back up the tree, but if you are clever you can use `cd -` to jump back to your previous location.
https://github.com/bag-man/dotfiles/blob/master/bashrc#L73
Lets you change directory with alt+c, although I have tweaked it so you always search from your root folder. Which isn't for everyone. Otherwise fzf alt+c doesn't let you go back up directories which gets frustrating.