From 5d09ab4867a98b9493384bceed294f969d025607 Mon Sep 17 00:00:00 2001 From: Marley Rae Date: Sat, 3 Feb 2024 20:54:15 -0800 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20eza=20default=20options=20mapped=20?= =?UTF-8?q?to=20ls=20&=20lsl?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- fish/aliases.config.fish | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/fish/aliases.config.fish b/fish/aliases.config.fish index 9be14a0..efd5151 100644 --- a/fish/aliases.config.fish +++ b/fish/aliases.config.fish @@ -37,3 +37,16 @@ abbr -a rm --position command "rm -rf" abbr -a grep --position command "grep --color=auto" abbr -a fgrep --position command "fgrep --color=auto" abbr -a egrep --position command "egrep --color=auto" + +# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + +# eza. + +function ls --wraps eza + eza --all --icons=auto --sort=name --group-directories-first $argv +end + +function lsl --wraps eza + eza --all --icons=auto --sort=name --group-directories-first --grid --long \ + --git --header $argv +end