mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 20:25:30 +00:00
5 lines
161 B
Fish
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
|