ripgreprc/.ripgreprc

28 lines
632 B
Plaintext
Raw Normal View History

2022-08-27 12:39:27 +02:00
--smart-case
# ripgrep uses PCRE2 syntax, but its rust implementation doesn't support look-around and backreferences
# Automatically switch engine if either of those is used
--auto-hybrid-regex
# Don't let ripgrep vomit really long lines to my terminal, and show a preview.
--max-columns=150
--max-columns-preview
# Colouring
--colors=match:none
--colors=match:bg:yellow
--colors=match:fg:black
--colors=path:none
--colors=path:fg:green
--colors=path:style:bold
--colors=line:none
--colors=line:fg:yellow
--colors=line:style:bold
# Ignore spam files
--type-add=spam:*.bundle.js.map
--type-add=spam:*.bundle.js
--type-not=spam