# /etc/zsh/zshrc - system-wide zsh configuration

# History
HISTFILE=/root/.zsh_history
HISTSIZE=10000
SAVEHIST=10000
setopt HIST_IGNORE_DUPS
setopt HIST_IGNORE_SPACE
setopt SHARE_HISTORY

# Completion
autoload -Uz compinit
compinit

# Prompt
PS1='%F{blue}%n@%m%f:%F{green}%~%f %# '
