Download
git clone --depth 1 https://github.com/junegunn/fzf.git ~/.fzfInstall
~/.fzf/installAdd this line to ~/.bashrc.
[ -f ~/.fzf.bash ] && source ~/.fzf.bash
Navigate folders with CTRL + f.
Add this to .bashrc.
fzf_cd() {
dir=$(find /mnt/c/user/dev/lab \( -name "node_modules" -o -name ".git" -o -name "android" \) -prune -o -type d -print | fzf --no-preview)
cd "$dir"
}
bind -x '"\C-f": "fzf_cd"'Need to do source ~/.bashrc to refresh and get it working.