Created
February 8, 2025 17:45
-
-
Save snurre/a9b01054233cf551892497517d612d3b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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