From 66a9a41a2833ec4d4ac31b9f04c9e0133e8c2f28 Mon Sep 17 00:00:00 2001 From: Adam Date: Sun, 10 Apr 2022 15:37:55 -0600 Subject: [PATCH] feat: add fish ll alias --- fish/.config/fish/functions/ll.fish | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 fish/.config/fish/functions/ll.fish diff --git a/fish/.config/fish/functions/ll.fish b/fish/.config/fish/functions/ll.fish new file mode 100644 index 0000000..985c319 --- /dev/null +++ b/fish/.config/fish/functions/ll.fish @@ -0,0 +1,3 @@ +function ll --description 'alias ll exa -lagF --icons --octal-permissions --git --time-style long-iso' + command exa -lagF --icons --octal-permissions --git --time-style long-iso $argv; +end