From 3133e11a96421c209e073d87f9d789fd69dc19da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9ana=20=E6=B1=9F?= Date: Sun, 18 Jan 2026 22:24:42 +0100 Subject: [PATCH] fish: wrap ls command --- nix/homeModules/common/fish/functions/ls.fish | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 nix/homeModules/common/fish/functions/ls.fish 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