From e85471200f99a7b9c18d411c905ff225fbcef11a Mon Sep 17 00:00:00 2001 From: shokinn Date: Wed, 13 Sep 2023 11:08:06 +0200 Subject: [PATCH] use extenend flag only for la --- dotfiles/commonfunc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dotfiles/commonfunc b/dotfiles/commonfunc index 7c26074..bb15b58 100644 --- a/dotfiles/commonfunc +++ b/dotfiles/commonfunc @@ -11,13 +11,13 @@ # exa - set aliasses for exa to use it as ls replacement if [[ $(command -v exa) ]]; then exafunc() { - exa -l -F -g -h --extended --git --group-directories-first --icons ${@:-} + exa -l -F -g -h --git --group-directories-first --icons ${@:-} } lfunc() { exafunc -T -L ${1:-1} } lafunc() { - exafunc -a -T -L ${1:-1} + exafunc -a -T -L ${1:-1} --extended } alias l='lfunc' alias la='lafunc'