# number of lines kept in history
export HISTSIZE=1000
# number of lines saved in the history after logout
export SAVEHIST=1000
# location of history
export HISTFILE=~/.zhistory
# append command to history file once executed
setopt inc_append_history
#Autocomplete
autoload -U compinit
compinit
#Autocd
setopt autocd
autoload -U promptinit
promptinit
prompt gentoo
# Colors
autoload colors
colors
alias -g HE='2>>( sed -ue "s/.*/$fg_bold[red]&$reset_color/" 1>&2 )' # Highlight Errors
alias ls='ls -A --color'
alias ll='ls -Al --color'
alias ps='ps -AH'
alias rm='rm -i'
alias feh='feh -F'