From 0337ea1e105ed4daf5525eeeea07f6eced91e483 Mon Sep 17 00:00:00 2001 From: Origami404 Date: Fri, 17 Apr 2026 08:41:50 +0800 Subject: [PATCH] [zsh] un-alias grep and cat for better llm usage --- home/standalone/.zsh.d/modern-utils.zsh | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/home/standalone/.zsh.d/modern-utils.zsh b/home/standalone/.zsh.d/modern-utils.zsh index 32ad05e..52b10a0 100644 --- a/home/standalone/.zsh.d/modern-utils.zsh +++ b/home/standalone/.zsh.d/modern-utils.zsh @@ -1,8 +1,8 @@ # if bat is installed, alias cat to it -if command -v bat &> /dev/null; then - alias cat='bat' - alias pcat='/usr/bin/cat' -fi +# if command -v bat &> /dev/null; then +# alias cat='bat' +# alias pcat='/usr/bin/cat' +# fi # if eza is installed, alias ls to it; also check exa if command -v eza &> /dev/null; then @@ -25,9 +25,9 @@ fi if command -v ripgrep &> /dev/null; then alias rg='rgrep' fi -if command -v rg &> /dev/null; then - alias grep='rg' -fi +# if command -v rg &> /dev/null; then +# alias grep='rg' +# fi # Compatibility with windows alias traceroute='tracert'