Files
dotfiles/fish/functions/fhcd.fish
2023-06-27 11:39:51 +02:00

5 lines
161 B
Fish

function fhcd --description "Jump to home directory and search for directories"
cd $HOME
cd (find * -type d | fzf --preview 'tree -C {} | head -50')
end