nixos-config/modules/home/shell-conf/fish/functions/ls.fish

8 lines
182 B
Fish
Raw Normal View History

2024-09-24 23:26:29 -04:00
function ls --wraps=eza --description 'eza instead of ls'
if type --quiet eza
eza --git --header --icons $argv
else
command ls --color=auto $argv
end
end