Fish: Don't use -GF for ls on NetBSD

This commit is contained in:
hedy 2022-03-31 17:44:51 +08:00
parent 08c5e1e6de
commit a9f520eacb
Signed by: hedy
GPG Key ID: B51B5A8D1B176372
1 changed files with 3 additions and 0 deletions

View File

@ -1,4 +1,7 @@
function ls
set lspath (which ls)
if [ (uname) = "NetBSD" ]
set __fish_ls_color_opt ""
end
command $lspath $__fish_ls_color_opt $argv
end