+# Lines configured by zsh-newuser-install
+HISTFILE=~/.histfile
+HISTSIZE=10000
+SAVEHIST=20000
+setopt histignoredups
+setopt histignorespace
+setopt appendhistory
+
+setopt autocd
+setopt beep
+setopt extendedglob
+setopt nomatch
+setopt noclobber # don't allow overwriting files with '>', use '>!' instead
+setopt rcquotes # echo 'don''t'; prints don't
+
+unsetopt notify
+
+bindkey -e
+# End of lines configured by zsh-newuser-install
+# The following lines were added by compinstall
+zstyle :compinstall filename '/home/ramsi/.zshrc'
+
+autoload -Uz compinit
+compinit
+# End of lines added by compinstall
+
+# source aliases
+[[ -f ~/.bash_aliases ]] && source ~/.bash_aliases
+
+# set up prompt
+autoload -U promptinit
+promptinit
+prompt walters
+
+# make cd act like pushd
+DIRSTACKSIZE=10
+setopt autopushd # cd acts like pushd
+setopt pushdminus # inverts the meaning of cp -1 and cp +1
+setopt pushdsilent # don't print dir stack everytime
+setopt pushdtohome # pushd with no argumens pushes to ~
+alias dh='dirs -v'
+
+# set search path for cd
+cdpath=( ~ /mnt )