21 lines
377 B
Text
21 lines
377 B
Text
# Don't let ripgrep vomit really long lines to my terminal, and show a preview.
|
|
--max-columns=150
|
|
--max-columns-preview
|
|
|
|
# Add my 'web' type.
|
|
--type-add
|
|
web:*.{html,css,js}*
|
|
|
|
# Using glob patterns to include/exclude files or folders
|
|
--glob=!git/*
|
|
|
|
# or
|
|
--glob
|
|
!git/*
|
|
|
|
# Set the colors.
|
|
--colors=line:none
|
|
--colors=line:style:bold
|
|
|
|
# Because who cares about case!?
|
|
--smart-case
|