From 74b57caf38a38a5b5a4e6bc62d3f87add3c71672 Mon Sep 17 00:00:00 2001 From: FlintyLemming Date: Wed, 17 Dec 2025 13:23:08 +0800 Subject: [PATCH] add fish config --- fish/add-on.fish | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 fish/add-on.fish diff --git a/fish/add-on.fish b/fish/add-on.fish new file mode 100644 index 0000000..87133ec --- /dev/null +++ b/fish/add-on.fish @@ -0,0 +1,7 @@ +function ls --description 'alias ls to eza if possible' + if type -q eza + eza -la --icons $argv + else + command ls -la $argv + end +end \ No newline at end of file