You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
zsh/zshrc

34 lines
858 B

if [ -f $HOME/.zsh/zsh.conf ]
then
source $HOME/.zsh/zsh.conf
else
echo 'CONFIGURATION NOT SET!\n Copy zsh.conf from the example_configs directory and set up your preferences!\n Setting basic parameters only!' >&2
source $HOME/.zsh/history
source $HOME/.zsh/interactive
source $HOME/.zsh/exports
source $HOME/.zsh/bindkeys
source $HOME/.zsh/completion
source $HOME/.zsh/setopt
PROMPT="UNCONFIGURED%# "
return 1
fi
source $HOME/.zsh/history
source $HOME/.zsh/alias
source $HOME/.zsh/interactive
source $HOME/.zsh/exports
source $HOME/.zsh/bindkeys
source $HOME/.zsh/completion
source $HOME/.zsh/setopt
if [ $SYNTAX_HIGHLIGHT ]
then
source $HOME/.zsh/zsh-syntax-highlight/zsh-syntax-highlighting.zsh
fi
source $HOME/.zsh/prompt
if [ -f $HOME/.zsh/custom ]
then
source $HOME/.zsh/custom
fi
PATH=$PATH:$HOME/bin:/opt/java/current/bin