# REMnux File Analysis Container - ZSH Configuration # History HISTFILE=~/.zsh_history HISTSIZE=10000 SAVEHIST=10000 setopt SHARE_HISTORY HIST_IGNORE_ALL_DUPS HIST_FIND_NO_DUPS HIST_REDUCE_BLANKS # Navigation setopt AUTO_CD AUTO_PUSHD PUSHD_IGNORE_DUPS PUSHD_SILENT # Completion autoload -Uz compinit && compinit zstyle ':completion:*' menu select zstyle ':completion:*' matcher-list 'm:{a-zA-Z}={A-Za-z}' setopt COMPLETE_IN_WORD AUTO_MENU # Load plugins [[ -f /usr/share/zsh-autosuggestions/zsh-autosuggestions.zsh ]] && \ source /usr/share/zsh-autosuggestions/zsh-autosuggestions.zsh [[ -f /usr/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh ]] && \ source /usr/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh # Prompt autoload -U colors && colors PROMPT='%F{cyan}remnux%f@%F{blue}%m%f:%F{yellow}%~%f%# ' RPROMPT='%F{green}[%D{%H:%M:%S}]%f' # Aliases alias ls='ls --color=auto' alias ll='ls -lah' alias grep='grep --color=auto' alias fd='fdfind' alias rg='rg --color=auto' alias analyse='fhelp' alias ?='fhelp' # Welcome [[ -f /opt/README ]] && cat /opt/README && echo "" && echo "🐚 Shell: zsh | Type 'fhelp' for help" && echo ""