diff options
author | Azat Bahawi <azat@bahawi.net> | 1970-01-01 03:00:00 +0300 |
---|---|---|
committer | Azat Bahawi <azat@bahawi.net> | 2022-09-20 11:51:54 +0300 |
commit | 38bab29776950ac2364ed64195b89887717c33de (patch) | |
tree | edaaf366a55dbe96d268019124536bc504c64e87 /ripgrep |
Diffstat (limited to 'ripgrep')
-rw-r--r-- | ripgrep/.rgrc | 50 | ||||
-rwxr-xr-x | ripgrep/@install | 7 |
2 files changed, 57 insertions, 0 deletions
diff --git a/ripgrep/.rgrc b/ripgrep/.rgrc new file mode 100644 index 0000000..e6a3811 --- /dev/null +++ b/ripgrep/.rgrc @@ -0,0 +1,50 @@ +--color=auto +--glob=!*.P +--glob=!*.Po +--glob=!*.crt +--glob=!*.d +--glob=!*.in +--glob=!*.m4 +--glob=!*.pem +--glob=!.bzr/* +--glob=!.cabal-sandbox/* +--glob=!.ccls-cache/* +--glob=!.clang-format +--glob=!.gdb_history +--glob=!.ghc.environment.* +--glob=!.git/* +--glob=!.gitlab/* +--glob=!.hg/* +--glob=!.idea/* +--glob=!.nupkg.metadata +--glob=!.stack-work/* +--glob=!.sublime-settings +--glob=!.svn/* +--glob=!.vs/* +--glob=!.vscode/* +--glob=!CMakeCache.txt +--glob=!CMakeFiles/* +--glob=!CODE_OF_CONDUCT.md +--glob=!LICENSE +--glob=!__pycache__/* +--glob=!autom4te.cache/* +--glob=!bin/Debug/* +--glob=!bin/Release/* +--glob=!build/* +--glob=!cabal.project.* +--glob=!cmake_install.cmake +--glob=!compile_commands.json +--glob=!config.status +--glob=!configure +--glob=!depcomp +--glob=!dist-newstyle/* +--glob=!dist/* +--glob=!install-sh +--glob=!ltmain.sh +--glob=!missing +--glob=!obj/* +--glob=!stamp-h1 +--hidden +--max-columns-preview +--max-columns=100 +--smart-case diff --git a/ripgrep/@install b/ripgrep/@install new file mode 100755 index 0000000..1b606df --- /dev/null +++ b/ripgrep/@install @@ -0,0 +1,7 @@ +#!/bin/sh + +stow \ + --target="${HOME}" \ + --ignore="^@.*" \ + --verbose \ + ripgrep |