dotfiles/.config/fish/functions/lt.fish

7 lines
363 B
Fish

function lt --wraps='eza --long --header -a --icons --tree --git --group-directories-first' --description 'alias lt=eza --long --header -a --icons --tree --git --group-directories-first'
if type -f eza &>/dev/null
eza --long --header -a --icons --tree --git --group-directories-first --hyperlink $argv
else
missing_package eza
end
end