-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdot_ripgreprc
More file actions
34 lines (25 loc) · 684 Bytes
/
dot_ripgreprc
File metadata and controls
34 lines (25 loc) · 684 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
# Search hidden files and directories.
--hidden
# Follow symbolic links.
--follow
# Don't respect ignore files (.gitignore, .ignore, etc.).
--no-ignore
# Exclude directories.
--glob=!{.git,.svn,node_modules,tealdeer,Trash,vendor}
# Exclude file types.
--glob=!*.{lock}
# Exclude files.
--glob=!{package-lock.json}
# Don't print lines longer than this limit.
--max-columns=10000
# Searches case insensitively.
--smart-case
# Sort by file path.
--sort=path
# Configure color settings and styles.
--colors=path:bg:0x3b,0x3b,0x3b
--colors=path:fg:white
--colors=line:fg:0xf2,0xc2,0x60
--colors=match:bg:0x2b,0x83,0xa6
--colors=match:fg:0xff,0xff,0xff
--colors=match:style:nobold