autoload -U compinit autoload -U colors compinit colors setopt correct color_user="blue" color_path="red" color_date="yellow" user="%{$fg[$color_user]%}[%n@%m]:" cpath="%{$fg[$color_path]%}%~$end" date="%{$fg[$color_date]%}%T" end="%{$reset_color%}" PS1="$user$cpath%# " RPS1="$date$end" HISTFILE="$HOME/.zsh_hist" SAVEHIST=1000 # The following lines were added by compinstall zstyle ':completion:*' completer _expand _complete _approximate zstyle ':completion:*' format 'Completing %d' zstyle ':completion:*' group-name '' zstyle ':completion:*' list-colors '' zstyle ':completion:*' list-prompt '%SAt %p: Hit TAB for more, or the character to insert%s' zstyle ':completion:*' max-errors 3 numeric zstyle ':completion:*' menu select=10 zstyle ':completion:*' original true zstyle ':completion:*' select-prompt '%SScrolling active: current selection at %p%s' zstyle ':completion:*' verbose true zstyle :compinstall filename '/home/binarym/.zshrc' # End of lines added by compinstall alias ls='ls --color' alias la='ls -la' alias s='screen -rd' umask 077