From 6a04c6ebc860e2fd30caa98680772a71ee38b881 Mon Sep 17 00:00:00 2001 From: Jonas Ryssel Date: Wed, 12 Oct 2022 16:24:29 +0200 Subject: [PATCH] Search hidden folders Exclude Node directories on GNU --- .ripgreprc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.ripgreprc b/.ripgreprc index 2e9fa41..2537b75 100644 --- a/.ripgreprc +++ b/.ripgreprc @@ -3,6 +3,9 @@ # Automatically switch engine if either of those is used --auto-hybrid-regex +# Also search hidden folders +--hidden + # Don't let ripgrep vomit really long lines to my terminal, and show a preview. --max-columns=150 --max-columns-preview @@ -25,3 +28,5 @@ --type-add=spam:*.bundle.js --type-not=spam +# Skip external packages on gnu +--glob=!externals/node_modules/**