@ -1,6 +1,7 @@
# ZSH Configuration
BSD_MODE=false #Some options must be specified differently in BSD
SYNTAX_HIGHLIGHT=true #On-the-fly syntax highlighting of commands that you type
AUTO_CD=true #When true, if only a directory path is entered, you will cd to the directory
# Prompt Style
PROMPT_STYLE=bsd #Valid options: bsd, bsd2, ar5
@ -2,7 +2,10 @@ autoload -U compinit promptinit
autoload -U colors && colors
compinit -d ${HOME}/.cache/.zcompdump
promptinit
if [ $AUTO_CD = true ]
then
setopt autocd
fi
unsetopt beep
setopt HIST_IGNORE_SPACE
if [ $COMPLETION_STYLE = bash ]