-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.ripgreprc
More file actions
39 lines (30 loc) · 883 Bytes
/
Copy path.ripgreprc
File metadata and controls
39 lines (30 loc) · 883 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# Doc: https://github.com/BurntSushi/ripgrep/blob/master/GUIDE.md#configuration-file
# Don't let ripgrep vomit really long lines to my terminal, and show a preview.
--max-columns=150
# Add my 'web' type.
--type-add=web:*.{html,css,scss,js,ts,json}*
# Disable gitignore
--no-ignore
# Follow symlinks
# --follow
# Allow search hidden files
--hidden
# Using glob patterns to include/exclude files or folders
--glob=!{.git,.svn,.nuxt,dist,.dist,.output}
--glob=!*.min.{css,js}
# --glob=!**/typo3conf/ext/kamax/Resources/Public/*
--glob=!**/*.{sql,png,jpg,jpeg,svg}
--glob=!**/node_modules/*
--glob=!**/Public/Assets/*
--glob=!yarn.lock
# Because who cares about case!?
--smart-case
# Debugging
# --debug
--colors=line:fg:yellow
--colors=line:style:bold
--colors=path:fg:green
--colors=path:style:bold
--colors=match:fg:black
--colors=match:bg:yellow
--colors=match:style:nobold