dotfiles/.config/fish/functions/ll.fish

8 lines
104 B
Fish

function ll
if which exa > /dev/null
exa -lahg --git -t modified $argv
else
ls -Al $argv
end
end