From b5641b7cc4b9458b8353be67c986d0864a0e980e Mon Sep 17 00:00:00 2001 From: Connor Olding Date: Thu, 6 Jul 2023 02:23:18 -0700 Subject: [PATCH] more ripgrep aliases --- home/shrc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/home/shrc b/home/shrc index 63ca219..cd293ec 100644 --- a/home/shrc +++ b/home/shrc @@ -111,7 +111,9 @@ export LESS='-SRQc' alias fils="du -bahd1" ### @- (GNU du) display human-friendly filesizes for the files in a directory. alias lsa="ls -A --group-directories-first" ### @- (GNU ls) list files with directories and dotfiles ordered first. alias perlu='perl -Mopen=locale -Mutf8' ### @- invoke perl expecting files with UTF-8 encoding. -alias rgn="rg --no-ignore" ### @- invoke ripgrep without respecting `.gitignore` files. +alias rg="rg -M200" +alias rgn="rg -u" ### @- invoke ripgrep without respecting `.gitignore` files. +alias ryp="rg -M99 -g '*.py'" alias cms="cryptominisat5 --verb 0" ### @- invoke cryptominisat5 with less noise. alias curls="curl -sS" ### @- invoke curl with less noise. alias curLs="curl -L --no-progress-meter"