From 2c0dd6666ee085564625bb363c8e9ac61137d7bc Mon Sep 17 00:00:00 2001 From: Jan Jastrow Date: Mon, 4 Sep 2023 03:52:51 +0200 Subject: [PATCH] Extend options and display . & .. --- zsh/alias | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/zsh/alias b/zsh/alias index ecb572a..018ff72 100644 --- a/zsh/alias +++ b/zsh/alias @@ -13,7 +13,8 @@ fi # Better exa if [[ -x $(which exa) ]]; then - alias exa='pwd; exa -la --group-directories-first --git -g' + alias exa='pwd; exa --long --all --all --group-directories-first --git --group' + # --all (2x) to show `.` and `..` directories as well fi # Better lsd