diff options
author | Ben Sima <ben@bsima.me> | 2024-12-04 19:06:50 -0500 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2024-12-21 10:08:06 -0500 |
commit | 17ff0b65feedd890391e67319e2a6f127dc93f33 (patch) | |
tree | 996b697c3d84e4b19d5d8d2cc04b0c7c1e797d9b /.envrc | |
parent | 81cf94523f5a794e5b0c69dbd9a94619135a23c7 (diff) |
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!
Diffstat (limited to '.envrc')
-rw-r--r-- | .envrc | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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 # |