From eeb2b6170ff4d46364cb5c9b27cdcc885ea23c32 Mon Sep 17 00:00:00 2001 From: cswimr Date: Thu, 14 Nov 2024 13:18:41 -0500 Subject: [PATCH] added aliases for eza and bat --- .zshc/aliases.zsh | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.zshc/aliases.zsh b/.zshc/aliases.zsh index d2d214b..0d73ef4 100755 --- a/.zshc/aliases.zsh +++ b/.zshc/aliases.zsh @@ -30,6 +30,15 @@ if (( $+commands[yay] )); then alias pacstats="yaystats" fi +if (( $+commands[bat] )); then + alias cat="bat" +fi + +if (( $+commands[eza] )); then + alias ls="eza --icons" + alias l="eza -lh --icons" +fi + if (( $+commands[lazygit] )); then alias lg="lazygit" fi