From f60c88bb33635ac2f2c6222da86438ef563f9fa1 Mon Sep 17 00:00:00 2001 From: hellerve Date: Thu, 19 Mar 2015 16:25:21 +0100 Subject: [PATCH] Added quit alias for exit and local shell file into gitignore --- gitignore | 2 ++ zshrc | 1 + 2 files changed, 3 insertions(+) diff --git a/gitignore b/gitignore index dddcb41..9ba6382 100644 --- a/gitignore +++ b/gitignore @@ -25,3 +25,5 @@ __pycache__/ *.pyc doxyfile + +local.sh diff --git a/zshrc b/zshrc index 9f845bf..e0a0a8a 100644 --- a/zshrc +++ b/zshrc @@ -51,6 +51,7 @@ alias emptytrash="sudo rm -rfv /Volumes/*/.Trashes; sudo rm -rfv ~/.Trash; sudo alias dud="du -d 1" alias loc="cloc *" alias ls="ls -a" +alias quit="exit" alias howmuch="git ls-tree -r -z --name-only HEAD -- . | xargs -0 -n1 git blame --line-porcelain HEAD | grep '^author '| sort | uniq -c | sort -nr" alias clipboard_clear="echo lol | pbcopy" alias sloccount="sloccount --addlang makefile --addlang html --multiproject --duplicates --crossdups --autogen"