From 76db98b0fc025c6d50b21d0f899671f0f1ca3c06 Mon Sep 17 00:00:00 2001 From: Tobias Schmidl Date: Mon, 13 Nov 2023 13:34:37 +0100 Subject: [PATCH] fix: moved exa to eza, since exa is unmaintained --- exa.zsh | 21 --------------------- eza.zsh | 21 +++++++++++++++++++++ 2 files changed, 21 insertions(+), 21 deletions(-) delete mode 100644 exa.zsh create mode 100644 eza.zsh diff --git a/exa.zsh b/exa.zsh deleted file mode 100644 index 7e006bc..0000000 --- a/exa.zsh +++ /dev/null @@ -1,21 +0,0 @@ -#! /bin/zsh - -# SPDX-FileCopyrightText: 2023 Tobias Schmidl -# -# SPDX-License-Identifier: GPL-3.0-or-later - -# shellcheck disable=all - -alias exa='exa -FHhg@ --git --binary --time-style long-iso' -alias exal='exa -l' -function exat() { - [[ "$1" != <-> ]] && { echo "Usage: exat [path]"; exit 1 }; - depth="$1"; - shift; - exal -T -L $depth $@; -} - -alias e='exa -l' -alias ea='exa -la' -alias eg='exa -Gl' -alias et='exat' diff --git a/eza.zsh b/eza.zsh new file mode 100644 index 0000000..43ac5c6 --- /dev/null +++ b/eza.zsh @@ -0,0 +1,21 @@ +#! /bin/zsh + +# SPDX-FileCopyrightText: 2023 Tobias Schmidl +# +# SPDX-License-Identifier: GPL-3.0-or-later + +# shellcheck disable=all + +alias eza='eza -FHhg@ --git --binary --time-style long-iso' +alias ezal='eza -l' +function ezat() { + [[ "$1" != <-> ]] && { echo "Usage: ezat [path]"; exit 1 }; + depth="$1"; + shift; + ezal -T -L $depth $@; +} + +alias e='eza -l' +alias ea='eza -la' +alias eg='eza -Gl' +alias et='ezat'