summary refs log tree commit diff
path: root/dot_config/ripgrep
blob: 134efbf0bcfa09f9432071d97e7467878dddefce (plain)
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
# Searches case insensitively if the pattern is all lowercase.
--smart-case

# Use full regex intelligently
# TODO: Do not add this line if we have an old version of rg
--engine=auto

# Search compressed files.
--search-zip

# Skip OS things
--glob=!**/.snapshots/

# Skip basic Python stuff
--glob=!**/venv/
--glob=!**/__pychache__/

# Skip basic node stuff
--glob=!**/node_modules/

# Skip macOS system-y folders
--glob=!**/Applications*/
--glob=!**/Library/
--glob=!**/Parallels/

# Colours
--colors=path:none
--colors=path:fg:green
--colors=path:style:intense
--colors=path:style:bold
--colors=line:none
--colors=line:fg:yellow
--colors=line:style:intense
--colors=line:style:bold
--colors=match:none
--colors=match:fg:black
--colors=match:bg:yellow