diff options
author | Tim Keller <tjk@tjkeller.xyz> | 2025-06-05 10:34:01 -0500 |
---|---|---|
committer | Tim Keller <tjk@tjkeller.xyz> | 2025-06-05 10:34:01 -0500 |
commit | d6df1166552394a332799c84c5c40443dc4c434b (patch) | |
tree | b854584c13211c17e57d37e6086f30f2616a6a7f /zscripts | |
parent | 3667b563069bb4ce0fbae66a114ff1173cf11ff7 (diff) | |
download | zsh-d6df1166552394a332799c84c5c40443dc4c434b.tar.xz zsh-d6df1166552394a332799c84c5c40443dc4c434b.zip |
add / change aliases for git status and grep
Diffstat (limited to 'zscripts')
-rwxr-xr-x | zscripts/aliasrc.zsh | 3 | ||||
-rwxr-xr-x | zscripts/nicegit.zsh | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/zscripts/aliasrc.zsh b/zscripts/aliasrc.zsh index 5f1b52b..50bf0d5 100755 --- a/zscripts/aliasrc.zsh +++ b/zscripts/aliasrc.zsh @@ -34,7 +34,8 @@ alias \ bat="bat --theme='Monokai Extended'" \ diff="diff --color=auto" \ exa="exa --icons -a --group-directories-first" \ - grep="grep --color=auto -I --ignore-case --line-number" \ + grep="grep --color=auto -I --ignore-case" \ + grep-nl="grep --color=auto -I --ignore-case --line-number" \ ip="ip --color=auto" \ ls="ls -vAhN --color=auto --group-directories-first" \ diff --git a/zscripts/nicegit.zsh b/zscripts/nicegit.zsh index e422fb0..f9be202 100755 --- a/zscripts/nicegit.zsh +++ b/zscripts/nicegit.zsh @@ -5,6 +5,7 @@ alias \ gpl="git pull" \ gph="git push" \ gl="git log" \ + gs="git status" \ gldaily='git log --pretty="format:- %s" --after="00:00" --before="24:00"' \ |