From 7a8183d5e59e158f987409b1825a39eed8f02f4a Mon Sep 17 00:00:00 2001 From: Michel Date: Thu, 20 Apr 2023 10:58:23 +0200 Subject: [PATCH] feat(lsd): remove --total-size from lx & llx --- .config/lsd/config.yaml | 4 ---- .zshrc | 7 ++++--- 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/.config/lsd/config.yaml b/.config/lsd/config.yaml index 47fdc1b..52b239b 100644 --- a/.config/lsd/config.yaml +++ b/.config/lsd/config.yaml @@ -22,12 +22,8 @@ hyperlink: auto # ignore-globs: # - .git -indicators: false - recursion: enabled: false depth: 2 -total-size: true - symlink-arrow: => diff --git a/.zshrc b/.zshrc index 9d83dff..5da6ba9 100644 --- a/.zshrc +++ b/.zshrc @@ -171,10 +171,11 @@ autoload -U zmv alias mmv='noglob zmv -W' # https://github.com/lsd-rs/lsd -alias ls='lsd' +# ~/.config/lsd/config.yaml +alias ls='lsd --total-size' -alias l='lsd -l' -alias lt='lsd -ltr' +alias l='ls -l' +alias lt='ls -ltr' alias lx='lsd -l --blocks=permission,user,group,context,size,date,name' alias ll='l -A'