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"