dotfiles/dot_config/fish/conf.d/30-eza.fish

21 lines
478 B
Fish
Raw Normal View History

2024-04-14 18:41:15 -07:00
#!/usr/bin/env fish
if command -v eza &>/dev/null
function ls --wraps eza
eza --all --icons=auto --sort=name --group-directories-first $argv
end
2024-04-14 18:41:15 -07:00
function lst --wraps eza
ls --tree --color=always $argv
end
2024-04-14 18:41:15 -07:00
function lsl --wraps eza
eza --all --icons=auto --sort=name --group-directories-first --grid --long \
--git --header $argv
end
2024-04-14 18:41:15 -07:00
function lslt --wraps eza
lsl --tree --color=always $argv
end
2024-04-14 18:41:15 -07:00
end