From 4acdd9e13c170d6d452bfe4bc81d210d6f644624 Mon Sep 17 00:00:00 2001 From: GlennIgen Date: Mon, 1 Dec 2025 18:47:29 +0100 Subject: [PATCH] add ll and sll functions as aliases for lsd with options --- .config/fish/functions/ll.fish | 4 ++++ .config/fish/functions/sll.fish | 4 ++++ 2 files changed, 8 insertions(+) create mode 100644 .config/fish/functions/ll.fish create mode 100644 .config/fish/functions/sll.fish diff --git a/.config/fish/functions/ll.fish b/.config/fish/functions/ll.fish new file mode 100644 index 0000000..2d81201 --- /dev/null +++ b/.config/fish/functions/ll.fish @@ -0,0 +1,4 @@ +function ll --wraps='lsd -alh' --description 'alias ll lsd -alh' + lsd -alh $argv + +end diff --git a/.config/fish/functions/sll.fish b/.config/fish/functions/sll.fish new file mode 100644 index 0000000..4fe0438 --- /dev/null +++ b/.config/fish/functions/sll.fish @@ -0,0 +1,4 @@ +function sll --wraps='sudo lsd -alh' --description 'alias sll sudo lsd -alh' + sudo lsd -alh $argv + +end