dotfiles/dot_config/ripgreprc
2024-01-19 21:07:43 +09:00

21 lines
324 B
Plaintext

# Search hidden files
--hidden
# Use PCRE2 regex engine
# Related flags: --no-pcre2, --no-pcre2-unicode
-P
# Smart case# equivalent to --smart-case
-S
# Follow symbolic link
-L
# Ignore .git directory
--glob
!.git/*
# Suppress ALL error messages.
# This flag can be disabled with the `--messages` flag.
--no-messages