# ripgrep config (XDG: ~/.config/ripgrep/config)
# Requires: export RIPGREP_CONFIG_PATH=~/.config/ripgrep/config
# https://github.com/BurntSushi/ripgrep/blob/master/GUIDE.md#configuration-file

# Smart case: sensitive only when pattern has uppercase
--smart-case

# Follow symlinks
--follow

# Hidden files, but still respect .gitignore
--hidden

# Skip heavy / generated trees (global ignore; project .gitignore still wins)
--glob=!.git/*
--glob=!node_modules/*
--glob=!.terraform/*
--glob=!.terragrunt-cache/*
--glob=!dist/*
--glob=!build/*
--glob=!*.min.js
--glob=!*.min.css
