Skip to content

Instantly share code, notes, and snippets.

@snurre
Created February 8, 2025 17:45
Show Gist options
  • Save snurre/a9b01054233cf551892497517d612d3b to your computer and use it in GitHub Desktop.
Save snurre/a9b01054233cf551892497517d612d3b to your computer and use it in GitHub Desktop.
# Don't let ripgrep vomit really long lines to my terminal, and show a preview.
--max-columns=150
--max-columns-preview
# Search hidden files / directories (e.g. dotfiles) by default
--hidden
# Using glob patterns to include/exclude files or folders
--glob
!.git/*
!**/node_modules/*
!**/package-lock.json
# Set the colors.
--colors=line:none
--colors=line:style:bold
# Because who cares about case!?
--smart-case
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment