mirror of
https://codeberg.org/hyperreal/dotfiles
synced 2024-11-02 01:03:07 +01:00
8 lines
136 B
Fish
8 lines
136 B
Fish
|
function ll
|
||
|
if type -q exa
|
||
|
command exa -l --icons --git $argv
|
||
|
else
|
||
|
command ls -l --color=auto $argv
|
||
|
end
|
||
|
end
|