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 +} +