From 17ff0b65feedd890391e67319e2a6f127dc93f33 Mon Sep 17 00:00:00 2001 From: Ben Sima Date: Wed, 4 Dec 2024 19:06:50 -0500 Subject: Ignore cabdir while globbing The cabdir was getting really large and doing a `bild **/*` was actually taking a long time to just startup. Turns out you can configure bash to ignore certain patterns for all globs. How convenient! --- .envrc | 3 +++ 1 file changed, 3 insertions(+) (limited to '.envrc') diff --git a/.envrc b/.envrc index f342995..abee960 100644 --- a/.envrc +++ b/.envrc @@ -16,6 +16,9 @@ export CODEROOT=$PWD export COLUMNS # +# ignore cabdir and hidden files when globbing + export GLOBIGNORE="_:**_/**:.*:$GLOBIGNORE" +# # scripts for editing go here PATH_add $CODEROOT/Omni/Ide # -- cgit v1.2.3