PATH=/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin:/usr/texbin:$HOME/.brew/bin HISTFILE=~/.zshrc_history SAVEHIST=5000 HISTSIZE=5000 export GREY="\e[0;30m" export RED="\e[0;31m" export GREEN="\e[0;32m" export YELLOW="\e33[33m" export BLUE="\e[0;34m" export PURPLE="\e;[0;35m" export CYAN="\e[0;36m" export WHITE="\e[0;37m" export ENDCOLOR="\e[0m" setopt inc_append_history setopt share_history if [[ -f ~/.myzshrc ]]; then source ~/.myzshrc fi USER=`/usr/bin/whoami` export USER GROUP=`/usr/bin/id -gn $user` export GROUP MAIL="$USER@student.42.fr" export MAIL # %d = PWD # %D = date alias ls='ls -G' alias rl='source ~/.zshrc' #PS1=$'\e[0;32m%n@%m:\e[0m\e[0;36m%~\e[0m\e[0;31m$ \e[0m' alias gccW='gcc -Wall -Werror -Wextra' PS1="%{%F{yellow}%}%n@%m %{%F{cyan}%}%~/%{%F{yellow}%}$ %{%F{white}%}"