From 0a1b93900e1f572f11dc3f16b7ea47b67310cff2 Mon Sep 17 00:00:00 2001 From: hophacker Date: Wed, 24 Jul 2019 13:26:56 +0800 Subject: [PATCH] add colors --- zsh/functions.zsh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/zsh/functions.zsh b/zsh/functions.zsh index 2a74890..4ce82c1 100644 --- a/zsh/functions.zsh +++ b/zsh/functions.zsh @@ -1,3 +1,8 @@ +RED="\033[0;31m" +GREEN="\033[0;32m" +YELLOW="\033[1;33m" +NC="\033[0m" # No Color + function secure_source () { if [ -e $1 ]; then source $1