From 7602ff75b4d99d7b86224d87537692c08fcc25b5 Mon Sep 17 00:00:00 2001 From: inkch Date: Fri, 19 Jan 2024 21:07:43 +0900 Subject: [PATCH] rg: add ripgreprc --- dot_config/ripgreprc | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 dot_config/ripgreprc diff --git a/dot_config/ripgreprc b/dot_config/ripgreprc new file mode 100644 index 0000000..518e240 --- /dev/null +++ b/dot_config/ripgreprc @@ -0,0 +1,20 @@ +# 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