From b4c5a2774c383a53d0516dc484b6398787b93c84 Mon Sep 17 00:00:00 2001 From: quak Date: Fri, 11 Apr 2025 22:58:19 +0200 Subject: [PATCH] grep alias.. --- bashrc/.bashrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bashrc/.bashrc b/bashrc/.bashrc index 50cf811..154851d 100644 --- a/bashrc/.bashrc +++ b/bashrc/.bashrc @@ -31,8 +31,8 @@ alias ls='ls -hal --color=auto' alias list='eza -lao --no-permissions --group-directories-first -s=ext --color=always --time-style long-iso' if $(which rg >/dev/null); then - alias rg='rg --color=always -n -e' - alias rgi='rg -i -n -A 1 -B 1 --color=always -e' + alias rg='rg --color=always -n' + alias rgi='rg -i -n -A 1 -B 1 --color=always' else alias grep='grep --color=always' fi