really basic .zshrc, fixing some keybinds for me and setting a very basic prompt.
# The following lines were added by compinstall
zstyle :compinstall filename '/home/name/.zshrc'
autoload -Uz compinit
compinit
# End of lines added by compinstall
# Lines configured by zsh-newuser-install
HISTFILE=~/.zsh_hist
HISTSIZE=1000
SAVEHIST=3000
bindkey -e
# End of lines configured by zsh-newuser-install
. ~/.profile
bindkey '\e[7~' beginning-of-line
bindkey '\e[8~' end-of-line
bindkey '\e[3~' delete-char
bindkey '\e[5~' beginning-of-history
bindkey '\e[6~' end-of-history
autoload colors
colors
PROMPT="%(?..%? )[ %3c ] %# " # Displays the return code of the previous
# command if it was not 0