Files
dotfiles/nix/home/fish/functions/fhcd.fish
2024-07-30 20:49:42 +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