# # /etc/profile.zsh # Global settings for zsh shells # PS1='[%n@%m %~]$ ' PS2='> ' PS3='> ' PS4='+ ' export PS1 PS2 PS3 PS4 #In the future we may want to add more ulimit entries here, # in the offchance that /etc/security/limits.conf is skipped ulimit -Sc 0 #Don't create core files if test "$TERM" = "xterm" -o \ "$TERM" = "xterm-color" -o \ "$TERM" = "xterm-256color" -o \ "$TERM" = "rxvt" -o \ "$TERM" = "rxvt-unicode" -o \ "$TERM" = "xterm-xfree86"; then PROMPT='[%n@%m %~]$ ' fi