Files
dotfiles/config/fish/functions/fhcd.fish
2024-08-09 12:27:45 +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