commit 2059d2eb50d9f03b9c479055231c1ef8b81d1ef6 (patch)
parent ae8bf6efe566c0f80bbd57a572bdfd7b92376ee7
Author: Alex Karle <alex@karle.co>
Date: Thu, 13 Feb 2020 00:15:57 -0500
sh: git grep and curljson aliases
Diffstat:
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/sh/aliases b/sh/aliases
@@ -31,6 +31,7 @@ alias gb='git branch'
alias grb='git rebase'
alias grs='git reset'
alias gm='git merge'
+alias gg='git grep'
alias vlg='vim -c "GV"' # 'vim log' of a file
# Quick Actions
@@ -38,6 +39,7 @@ alias cddv='cd ~/.vim'
alias ...='cd ../../..'
alias ....='cd ../../../..'
alias .....='cd ../../../../..'
+alias curljson='curl -H "Content-Type: application/json"'
# Lightweight funcs
aw() { w3m "https://wiki.archlinux.org/index.php?search=$1"; }