dotfiles/dot_config/fish/private_functions/private_ll.fish

9 lines
154 B
Fish
Raw Normal View History

2024-01-20 08:18:30 +01:00
function ll --wraps=ls --wraps=eza
2024-01-20 16:02:24 +01:00
set bin exa
if type -q eza
set bin eza
end
$bin --long --all --header --group --git $argv
2021-08-10 10:50:48 +02:00
end