From e877d8dce746176cb6b89527c3541b579d23bc1e Mon Sep 17 00:00:00 2001 From: Andrew Williams Date: Thu, 8 Jan 2026 16:50:26 +0000 Subject: [PATCH] [macos] Add bat --- macos/.config/homebrew/Brewfile | 1 + shell-common/.config/shell-common/10_aliases.sh | 6 ++++++ 2 files changed, 7 insertions(+) diff --git a/macos/.config/homebrew/Brewfile b/macos/.config/homebrew/Brewfile index 6064a0e..a277bd9 100644 --- a/macos/.config/homebrew/Brewfile +++ b/macos/.config/homebrew/Brewfile @@ -13,6 +13,7 @@ tap "setchy/brews" brew "awscli" brew "awslogs" +brew "bat" brew "coreutils" brew "dockutil" brew "eza" diff --git a/shell-common/.config/shell-common/10_aliases.sh b/shell-common/.config/shell-common/10_aliases.sh index 5134a62..20fd4f1 100644 --- a/shell-common/.config/shell-common/10_aliases.sh +++ b/shell-common/.config/shell-common/10_aliases.sh @@ -24,5 +24,11 @@ if [ -x "$(command -v eza)" ]; then alias lla="eza -la --icons" fi +# Bat +if [ -x "$(command -v bat)" ]; then + alias cat="bat" +fi + alias last="last | head" alias dp="demoprompt" +alias stow="stowage"