From 4cd93b09b3a179515630114078739564a35af38d Mon Sep 17 00:00:00 2001 From: katherine Date: Sun, 19 Feb 2017 03:47:19 -0700 Subject: move remaining funcs from .zshrc everything should be modular now also, cleaned up make-gif to properly parse arguments and check things --- .zshrc | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) (limited to '.zshrc') diff --git a/.zshrc b/.zshrc index 8426fab..41a9c2a 100644 --- a/.zshrc +++ b/.zshrc @@ -26,7 +26,7 @@ unsetopt beep if [[ "$TERM" == "rxvt-unicode-256color" ]]; then precmd() { - print -Pn "\e]0;zsh: %(1j,%j job%(2j|s|); ,)%~\a" + print -Pn "\e]0;zsh:%(1j,%j job%(2j|s|); ,)%~\a" } preexec() { @@ -134,12 +134,27 @@ fi [[ "$(whence aiksaurus)" != "" ]] && alias thesaurus='aiksaurus' [[ "$(whence ag)" != "" ]] && alias ag='ag --color-match "1;34"' [[ "$(whence latex)" != "" ]] && alias latex='latex -output-format=pdf' +[[ "$(whence startx)" != "" ]] && alias sx='startx' if [[ "$(whence udevil)" != "" ]] then alias vmount='udevil mount' alias vumount='udevil umount' fi +################## FUNCTIONS ################## + +# ignore non-tracked files +if [[ "$(whence git)" != "" ]] then +git() { + if [[ $# -gt 0 ]] && [[ "$1" == "status" ]]; then + shift + $(whence -p git) status -uno "$@" + else + $(whence -p git) "$@" + fi +} +fi + ################# OS SPECIFIC ################# case $(uname) in -- cgit v1.2.3