From b35b35731bc609c2a90e9a402f570836a21ffc19 Mon Sep 17 00:00:00 2001 From: Dreaded_X Date: Sat, 13 Sep 2025 19:37:31 +0200 Subject: [PATCH] zsh: Fix bat command availability check --- zsh/dot-zshrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zsh/dot-zshrc b/zsh/dot-zshrc index 06fa08e..89d3b87 100644 --- a/zsh/dot-zshrc +++ b/zsh/dot-zshrc @@ -55,7 +55,7 @@ export EDITOR=nvim alias cl="clear" -if (( $+commands[hash] )); then +if (( $+commands[bat] )); then export BAT_THEME="gruvbox-dark" alias cat=bat fi