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