From 1368ad5d933a3f016e78e95b5ba7e7efc6c31199 Mon Sep 17 00:00:00 2001 From: "Jenkins (DMT)" Date: Tue, 19 May 2015 15:54:27 +0200 Subject: [PATCH] local changes --- zshrc | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/zshrc b/zshrc index e08d7c213..14ef66bad 100644 --- a/zshrc +++ b/zshrc @@ -29,7 +29,8 @@ DISABLE_COMPLETION_WAITING_DOTS="false" # bool # plugins to load (array) # Example format: plugins=(rails git textmate ruby lighthouse) -plugins=(git command-not-found) +# plugins=(git command-not-found) +plugins=(git) # Customize to your needs... @@ -223,3 +224,8 @@ alias s="sudo -s -E" # don't require "rehash" after installing a package setopt nohashdirs +function compile () { + echo "[compile zsh function] $@" + for file in "$@"; do gcc -o "${file%.}" "$file"; done +} +