diff --git a/nix/homeModules/common/fish/functions/ls.fish b/nix/homeModules/common/fish/functions/ls.fish new file mode 100644 index 00000000..785ac319 --- /dev/null +++ b/nix/homeModules/common/fish/functions/ls.fish @@ -0,0 +1,7 @@ +function ls + if type -q lsr + command lsr $argv + else + command ls $argv + end +end