config: adjusting fd defaults

This commit is contained in:
xeruf 2023-11-15 20:51:02 +01:00
parent d79346de86
commit 4f82c00060
3 changed files with 3 additions and 2 deletions

View File

@ -12,3 +12,4 @@ node_modules/
build/
generated/
out/
.git/

View File

@ -391,7 +391,7 @@ alias grpc='grep --color=auto --line-number --binary-files=without-match --direc
alias grp='grpc --ignore-case'
# Grep recursively and paginate
# TODO remove some prefixes \([^ ]*/\)\?
grpr() { grp --color=always --recursive '--exclude=*.sql' $(echo $DIRS_IGNORE | sed 's|-x |--exclude-dir |g') "$@" | less -FX; }
grpr() { grp --color=always --recursive '--exclude=*.sql' $(echo $DIRS_IGNORE | sed 's|-x |--exclude-dir |g') "$@" | cut -c-$(expr $COLUMNS \* 3) | less -FX; }
# Grep in shell config files
grsh() {
local search=$1