1
0
Fork 0
vdotfiles/cli/.config/fish/functions/ls.fish

8 lines
143 B
Fish
Raw Normal View History

2023-02-05 22:13:01 +02:00
function ls
set -l i
if test -n "$WEZTERM_PANE"
set i '--icons'
end
command exa $i --group-directories-first $argv
2023-02-05 22:13:01 +02:00
end