]> Tony Duckles's Git Repositories (git.nynim.org) - dotfiles.git/blob - .ripgreprc
bin/git-branch-dates: Smarter automatic line truncation
[dotfiles.git] / .ripgreprc
1 # --------------------------------------------------------------------
2 # General Settings
3 # --------------------------------------------------------------------
4 # Only search with case sensitivity if there is mixed case
5 --smart-case
6 # Follow symlinks
7 --follow
8 # Always sort the files
9 --sort=path
10 # Always color, even if piping to a another program
11 --color=always
12 # Grouping
13 --heading
14 # Always print filename prefix
15 --with-filename
16
17 # --------------------------------------------------------------------
18 # Global Inclusions/Exclusions
19 # --------------------------------------------------------------------
20 # Always search dotfiles
21 --hidden
22 # Always ignore VCS and cache files
23 --glob=!{.git,node_modules,*.swp,.venv}/*
24
25 # --------------------------------------------------------------------
26 # Custom File-Types
27 # --------------------------------------------------------------------
28 --type-add=mumps:*.{m,ro,ROU,GLO}
29 --type-add=markdown:*.{md,mkd,markdown}
30
31 # --------------------------------------------------------------------
32 # Colors
33 # --------------------------------------------------------------------
34 --colors=path:fg:cyan
35 --colors=path:style:underline
36 --colors=line:fg:yellow
37 --colors=match:fg:green
38 --colors=match:style:bold