From 5f2cb6a8cab0686103a595cd18ac783bca2d21db Mon Sep 17 00:00:00 2001 From: Computer Date: Sun, 2 Jun 2024 21:10:58 +0200 Subject: [PATCH] feat(eza): add support for eza icons option --- plugins/eza/eza.plugin.zsh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/plugins/eza/eza.plugin.zsh b/plugins/eza/eza.plugin.zsh index 6d7f720bd..79f5a0f71 100644 --- a/plugins/eza/eza.plugin.zsh +++ b/plugins/eza/eza.plugin.zsh @@ -31,6 +31,9 @@ function _configure_eza() { if zstyle -t ':omz:plugins:eza' 'git-status'; then _EZA_TAIL+=("--git") fi + if zstyle -t ':omz:plugins:eza' 'icons'; then + _EZA_TAIL+=("--icons") + fi zstyle -s ':omz:plugins:eza' 'time-style' _val if [[ $_val ]]; then _EZA_TAIL+=("--time-style='$_val'")