From bc9a95c215e20da01d68e1a9b30e510024c59765 Mon Sep 17 00:00:00 2001 From: Tim Huizinga Date: Wed, 3 Dec 2025 21:18:23 +0100 Subject: [PATCH] Fix command names on ubuntu --- zsh/dot-zshrc | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/zsh/dot-zshrc b/zsh/dot-zshrc index 89d3b87..2e5eb51 100644 --- a/zsh/dot-zshrc +++ b/zsh/dot-zshrc @@ -55,6 +55,14 @@ export EDITOR=nvim alias cl="clear" +# Fix command names on ubuntu +if (( $+commands[batcat] )); then + alias bat=batcat +fi +if (( $+commands[fdfind] )); then + alias fd=fdfind +fi + if (( $+commands[bat] )); then export BAT_THEME="gruvbox-dark" alias cat=bat